mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
49
dom/base/test/test_writable-replaceable.html
Normal file
49
dom/base/test/test_writable-replaceable.html
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Test for Bug 823283</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=823283">Mozilla Bug 823283</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none"></div>
|
||||
<pre id="test">
|
||||
<script type="application/javascript">
|
||||
/** Test for Bug 823283 **/
|
||||
|
||||
function createTest(prop, typeStr, valCode, replaceable)
|
||||
{
|
||||
var newType = replaceable ? typeof(valCode) : typeStr;
|
||||
var code =
|
||||
'is(typeof ' + prop + ', "' + typeStr + '", "' + prop + ': bad unqualified before-state");\n' +
|
||||
'is(typeof window.' + prop + ', "' + typeStr + '", "' + prop + ': bad qualified before-state");\n' +
|
||||
'\n' +
|
||||
prop + ' = ' + valCode + ';\n' +
|
||||
'\n' +
|
||||
'is(typeof ' + prop + ', "' + newType + '", "' + prop + ': bad unqualified after-state");\n' +
|
||||
'is(typeof window.' + prop + ', "' + newType + '", "' + prop + ': bad qualified after-state");';
|
||||
|
||||
return Function(code);
|
||||
}
|
||||
|
||||
[
|
||||
["innerHeight", "number", '"123"', true],
|
||||
["innerWidth", "number", '"456"', true],
|
||||
["outerHeight", "number", '"654"', true],
|
||||
["outerWidth", "number", '"321"', true],
|
||||
["screenX", "number", '"17"', true],
|
||||
["screenY", "number", '"42"', true],
|
||||
["status", "string", '{}', false],
|
||||
["name", "string", '{}', false],
|
||||
].forEach(function(args)
|
||||
{
|
||||
createTest.apply(null, args)();
|
||||
});
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue