4 <script src=
"resources/frame-programmatic-resize.js"></script>
6 if (window
.testRunner
) {
7 testRunner
.dumpAsText();
8 testRunner
.dumpChildFramesAsText();
11 window
.onload
= runTests
;
15 if (!window
.eventSender
)
16 return; // Cannot run this test without DRT.
18 description("This tests that a frame inherits the noresize attribute of its parent frameset by default. Note, this behavior doesn't seem to conform to any W3C spec or MSDN documentation. See WebKit Bug 57604.");
19 setTestFrameById("testFrame");
20 shouldDisallowFrameResize();
24 <frameset cols=
"200,*" border=
"10" noresize
>
25 <frame id=
"testFrame" name=
"testFrame" src=
"about:blank">
26 <frame id=
"results" name=
"results" src=
"data:text/html,<p id='description'>This test can only be run using DRT.</p><pre id='console'></pre>">