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

Unified Diff: LayoutTests/fast/regions/region-range-for-box-crash.html

Issue 9290001: Revert 105784 - Merge 104121 - Source/WebCore: Crash in RenderRegion::getRegionRangeForBox. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 years, 11 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/regions/region-range-for-box-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/regions/region-range-for-box-crash.html
===================================================================
--- LayoutTests/fast/regions/region-range-for-box-crash.html (revision 105814)
+++ LayoutTests/fast/regions/region-range-for-box-crash.html (working copy)
@@ -1,42 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- #el0 {
- -webkit-flow-from: a;
- content: counter(c);
- }
- #el2 {
- -webkit-flow-into: a;
- }
- </style>
- <script>
- if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
- function crash() {
- el0 = document.createElement('div');
- el0.setAttribute('id', 'el0');
- document.body.appendChild(el0);
- el1 = document.createElement('div');
- document.body.appendChild(el1);
- el2 = document.createElement('div');
- el2.setAttribute('id', 'el2');
- el1.appendChild(el2);
- el2.appendChild(document.createTextNode('A'));
- el3 = document.createElement('input');
- el3.setAttribute('id', 'el3');
- el2.appendChild(el3);
- document.body.style.zoom=2;
- document.execCommand('selectall');
- el2.style.display='table-header-group';
- document.body.style.zoom=1;
- }
- window.onload=crash
- </script>
- </head>
- <body>
- <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=74781">74781</a>: Crash in RenderFlowThread::getRegionRangeForBox</p>
- <p> This test PASSES if it does not CRASH or ASSERT.</p>
- </body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/regions/region-range-for-box-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698