mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-23 21:17:52 +00:00
0d460e3432
This is split from the previous changeset since if we include dom/ the file size is too large for phabricator to handle. This is an autogenerated commit to handle scripts loading mochitest harness files, in the simple case where the script src is on the same line as the tag. This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170 using the `--part 2` argument. Differential Revision: https://phabricator.services.mozilla.com/D27457 --HG-- extra : moz-landing-system : lando
49 lines
1.2 KiB
HTML
49 lines
1.2 KiB
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=400705
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 400705</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
<bindings xmlns="http://www.mozilla.org/xbl">
|
|
<binding id="test">
|
|
<implementation>
|
|
<field name="a">window.countera++</field>
|
|
<field name="b">window.counterb++</field>
|
|
</implementation>
|
|
</binding>
|
|
</bindings>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=400705">Mozilla Bug 400705</a>
|
|
<p id="display" style="-moz-binding: url(#test)"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
<![CDATA[
|
|
/** Test for Bug 400705 **/
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
addLoadEvent(function() {
|
|
window.countera = 0;
|
|
window.counterb = 0;
|
|
|
|
var d = $("display");
|
|
// Control to make sure fields are lazy and all
|
|
d.a;
|
|
is(window.countera, 1, "Should have evaluated field");
|
|
|
|
d.remove();
|
|
is(window.counterb, 0, "Should not evaluate field on binding teardown");
|
|
SimpleTest.finish();
|
|
});
|
|
]]>
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|