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

Side by Side Diff: LayoutTests/fast/text-autosizing/empty-document-crash.html

Issue 182443004: [FastTextAutosizer] Do not inflate blocks with no children (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/text-autosizing/empty-document-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 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta name="viewport" content="width=800">
5 <style>
6 body {
7 width: 800px;
8 margin: 0;
9 overflow-y: hidden;
10 }
11 </style>
12
13 <script src="resources/autosizingTest.js"></script>
14 </head>
15 <body>
16
17 Test for crbug.com/348458: this test passes if it does not crash.
18 <script>
19 // Create an iframe with no content (html, body) except for the document.
20 // Note: splitting the end script tag is requried to prevent closing the scrip t we are in.
21 document.body.innerHTML += "<iframe src='data:text/html,<body><script>document .removeChild(document.body.parentElement)</s" + "cript>'></body></iframe>";
22 var forceLayout = document.getElementsByTagName('iframe')[0].offsetWidth;
23 document.write("PASS");
24 if (testRunner)
25 testRunner.dumpAsText();
26 </script>
27
28 </body>
29 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/text-autosizing/empty-document-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698