aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/core/aliased.html
blob: 87b5871f463e77b92ecb9be18f403b1be99d4885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html>
<head>
	<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
	<title>alias-masked DOM properties (#14074)</title>
	<script>
		var errors = [];
		window.onerror = function( errorMessage, filePath, lineNumber ) {
			errors.push( errorMessage );
		};
	</script>
	<script src="../../jquery.js"></script>
	<script src="../iframeTest.js"></script>
</head>
<body>
	<form>
		<input type="text" id="nodeName"/>
	</form>
	<script>
		jQuery( function() {
			startIframeTest( errors );
		} );
	</script>
</body>
</html>