4 https://bugzilla.mozilla.org/show_bug.cgi?id=1419764
8 <title>Test for Bug
1419764</title>
9 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css"/>
11 <script type=
"application/javascript">
13 /** Test for Bug
1419764 **/
15 SimpleTest.waitForExplicitFinish();
18 var utils = SpecialPowers.getDOMWindowUtils(window);
19 var rect = document.querySelector(
"rect");
21 var matrix = rect.transform.baseVal[
0].matrix;
24 document.documentElement.offsetTop; // flush layout
26 var startcount = utils.framesConstructed;
29 document.documentElement.offsetTop; // flush layout
31 var endcount = utils.framesConstructed;
32 is(endcount, startcount,
"should not do frame construction");
39 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=1419764">Mozilla Bug
1419764</a>
41 <rect transform=
"translate(1 1)" width=
"20" height=
"20" fill=
"yellow"/>