mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
25 lines
516 B
HTML
25 lines
516 B
HTML
<!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>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<input type="text" id="nodeName"/>
|
|
</form>
|
|
<script>
|
|
jQuery(function() {
|
|
window.parent.iframeCallback( errors );
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|