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

Side by Side Diff: LayoutTests/editing/selection/clear-selection-crash.html

Issue 9930007: Merge 111899 (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 unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/editing/selection/clear-selection-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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <div style="display: -webkit-inline-box"> 4 <div style="display: -webkit-inline-box">
5 <div id="start" style="display: -webkit-inline-box"> 5 <div id="start" style="display: -webkit-inline-box">
6 <i> 6 <i>
7 <div style="display: run-in; height: 1px"></div> 7 <div style="display: run-in; height: 1px"></div>
8 <span id="span1" style="width: 1px">A</span> 8 <span id="span1" style="width: 1px">A</span>
9 </i> 9 </i>
10 </div> 10 </div>
11 <i>B</i> 11 <i>B</i>
12 </div> 12 </div>
13 <script> 13 <script>
14 if (window.layoutTestController) 14 if (window.layoutTestController)
15 layoutTestController.dumpAsText(); 15 layoutTestController.dumpAsText();
16 16
17 document.body.offsetTop; 17 document.body.offsetTop;
18 document.designMode = 'on'; 18 document.designMode = 'on';
19 document.execCommand('selectall'); 19 document.execCommand('selectall');
20 document.body.offsetTop; 20 document.body.offsetTop;
21 span1.style.display = 'block'; 21 span1.style.display = 'block';
22 22
23 document.body.offsetTop; 23 document.body.offsetTop;
24 document.body.innerHTML = "PASS. WebKit didn't crash."; 24 document.body.innerHTML = "PASS. WebKit didn't crash.";
25 </script> 25 </script>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/selection/clear-selection-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698