10 transform: rotate(
180deg);
14 if (window
.testRunner
)
15 window
.testRunner
.dumpAsText()
19 document
.body
.offsetWidth
;
20 var elt
= document
.elementFromPoint(50, 50);
21 if (elt
== document
.getElementById('rotated'))
22 document
.getElementById('console').innerHTML
= 'PASS';
24 document
.getElementById('console').innerHTML
= 'FAIL';
25 elt
.style
.display
= 'none';
29 <body onload=
"runTest()">
30 <div id=
"rotated">180 degree rotation
</div>
31 <div id=
"console"></div>