Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / subtree-relayout.html
blob97c635d0803b124179d5843da0a8537752aa14cb
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
6 #subtree {
7 width: 100px;
8 height: 100px;
9 overflow: hidden;
12 </style>
13 <script src="resources/autosizingTest.js"></script>
14 </head>
15 <body>
16 <div id="subtree"></div>
18 <script>
19 if (window.testRunner)
20 testRunner.waitUntilDone();
22 setTimeout(function() {
23 document.querySelector('#subtree').innerHTML =
24 "This text appears inside a relayout boundary.";
26 if (window.testRunner)
27 testRunner.notifyDone();
28 }, 0);
30 </script>
31 </body>
32 </html>