Tizen 2.1 base
[framework/web/webkit-efl.git] / LayoutTests / accessibility / nested-layout-crash.html
1 <p>
2     Test for <i><a href="rdar://problem/7050773">rdar://problem/7050773</a>
3     Crash at WebCore::RenderBlock::layoutBlock()</i>.
4 </p>
5 <p>
6     The test passes if it does not crash or cause an assertion failure.
7 </p>
8 <textarea rows="5" id="container">
9
10
11
12
13
14
15
16
17 </textarea>
18 <script>
19     var container = document.getElementById("container");
20     container.focus();
21     container.scrollTop = 200;
22     document.body.offsetTop;
23
24     container.rows = "20";
25
26     if (window.testRunner) {
27         testRunner.dumpAsText();
28
29         accessibilityController.focusedElement;
30     }
31 </script>