Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1353)

Side by Side Diff: LayoutTests/fast/flexbox/horizontal-box-float-crash.html

Issue 7503002: Revert 91684 - Merge 91386 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/flexbox/horizontal-box-float-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <body onload="runTest()">
3 <script>
4 if (window.layoutTestController)
5 layoutTestController.dumpAsText();
6
7 function runTest()
8 {
9 document.body.offsetTop;
10 var container = document.getElementById('container');
11 var test = document.getElementById('test');
12 var blockquote = document.getElementById('blockquote');
13 blockquote.parentNode.removeChild(blockquote);
14 test.appendChild(blockquote);
15 document.body.offsetTop;
16 test.parentNode.removeChild(test);
17 if (window.layoutTestController) {
18 // Force a focus in which forces a paint that can trigger the crash.
19 layoutTestController.setWindowIsKey(false);
20 layoutTestController.setWindowIsKey(true);
21 document.getElementById("results").innerHTML = "PASS";
22 }
23 }
24 </script>
25 <div>This test passes if it does not crash.</div>
26 <div id="container" style="display: -webkit-box;">
27 <div id="test">
28 <span style="float: right;">This is a floating span.</span>
29 <span>.</span>
30 </div>
31 <span>
32 <ol id="results">
33 <blockquote id="blockquote">blockquote</blockquote>
34 </ol>
35 </span>
36 </div>
37 </body>
38 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/flexbox/horizontal-box-float-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698