Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / subtree-layout-crash.html
blobc8631a180463c7db7df60c46af3ec9691f39d7e6
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
6 #subtree {
7 width: 100px;
8 height: 100px;
9 overflow: hidden;
10 display: list-item;
13 </style>
14 <script src="resources/autosizingTest.js"></script>
15 </head>
16 <body>
17 Test for crbug.com/360171: this test passes if it does not crash.<br/>
18 <div id="subtree"></div>
20 <script>
21 if (window.testRunner)
22 testRunner.waitUntilDone();
24 window.requestAnimationFrame(function () {
25 document.querySelector('#subtree').innerHTML =
26 "This text appears inside a relayout boundary.";
28 if (window.testRunner) {
29 testRunner.dumpAsText();
30 testRunner.notifyDone();
32 });
34 </script>
35 </body>
36 </html>