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

Unified Diff: LayoutTests/fast/block/float/intruding-float-not-removed-from-descendant-crash.html

Issue 10182013: Revert 114853 - Merge 112935 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/block/float/intruding-float-not-removed-from-descendant-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/block/float/intruding-float-not-removed-from-descendant-crash.html
===================================================================
--- LayoutTests/fast/block/float/intruding-float-not-removed-from-descendant-crash.html (revision 114938)
+++ LayoutTests/fast/block/float/intruding-float-not-removed-from-descendant-crash.html (working copy)
@@ -1,54 +0,0 @@
-<html>
-Test passes if it does not crash.
-<style>
-.div2 { float: none; width: 100px; }
-.div2:nth-last-child(odd) { float: right; }
-.span1 { float: right; height: 100px; }
-.td1 { height: 100px; }
-</style>
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-function runTest() {
-span1 = document.createElement('span');
-span1.setAttribute('class', 'span1');
-document.documentElement.appendChild(span1);
-
-div2 = document.createElement('div');
-div2.setAttribute('class', 'div2');
-document.documentElement.appendChild(div2);
-
-document.documentElement.appendChild(document.createElement('div'));
-
-div3 = document.createElement('div');
-document.documentElement.appendChild(div3);
-
-document.documentElement.appendChild(document.createElement('span'));
-document.documentElement.appendChild(document.createElement('span'));
-document.documentElement.appendChild(document.createElement('span'));
-
-span2 = document.createElement('span');
-document.documentElement.appendChild(span2);
-
-document.documentElement.appendChild(document.createElement('div'));
-
-document.body.offsetTop;
-div1 = document.createElement('div');
-td1 = document.createElement('td');
-td1.appendChild(document.createTextNode('PASS'));
-td1.setAttribute('class', 'td1');
-div1.appendChild(td1);
-div2.appendChild(div1);
-
-document.body.offsetTop;
-document.body.appendChild(div3);
-
-document.body.offsetTop;
-span2.appendChild(span1);
-document.createElement("span").appendChild(span2);
-}
-
-window.onload = runTest;
-</script>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/block/float/intruding-float-not-removed-from-descendant-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698