3 <script src=
"../../resources/js-test.js"></script>
6 testRunner
.dumpAsText();
9 var div
= document
.createElement('div');
10 div
.textContent
= "PASS";
12 var link
= document
.createElement('link');
13 link
.rel
= 'stylesheet';
14 link
.href
= "doesnotexist.css";
15 document
.head
.appendChild(link
);
17 document
.body
.appendChild(div
);
18 var style
= getComputedStyle(div
);
19 window
.width1
= style
.width
;
20 window
.width2
= style
.width
;
21 shouldBe("window.width1", "window.width2");
25 <body onload=
"measure()">