2 Test for
<i><a href=
"https://bugs.webkit.org/show_bug.cgi?id=9694">https://bugs.webkit.org/show_bug.cgi?id=
9694</a>
3 resize value not compared
</i>.
6 This box should have a working resize corner:
8 <div id=
"target" style=
"width: 50px; height: 50px; overflow: hidden; border: solid;"></div>
9 <pre id=
"console"></pre>
13 document
.getElementById("console").appendChild(document
.createTextNode(message
+ "\n"));
16 if (window
.testRunner
)
17 testRunner
.dumpAsText();
19 var target
= document
.getElementById("target");
20 target
.style
.resize
= "both";
21 var computedStyle
= getComputedStyle(target
);
22 log(computedStyle
.resize
=== "both" ? "PASS" : "FAIL");