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

Side by Side Diff: LayoutTests/editing/selection/invalid-in-RenderView.html

Issue 8200004: Merge 96834 - <rdar://problem/10232866> Assertion failure beneath blockSelectionGaps() when a sel... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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/invalid-in-RenderView-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 <script> 1 <script>
2 var frameset; 2 var frameset;
3 var topFrame; 3 var topFrame;
4 var selection; 4 var selection;
5 5
6 if (window.layoutTestController) 6 if (window.layoutTestController)
7 layoutTestController.dumpAsText(); 7 layoutTestController.dumpAsText();
8 8
9 onload = function() 9 onload = function()
10 { 10 {
11 frameset = document.getElementById("frameset"); 11 frameset = document.getElementById("frameset");
12 topFrame = document.getElementById("topFrame"); 12 topFrame = document.getElementById("topFrame");
13 selection = getSelection(); 13 selection = getSelection();
14 selection.setBaseAndExtent(frameset.parentNode, 0, frameset, 4); 14 selection.setBaseAndExtent(frameset.parentNode, 0, frameset, 4);
15 topFrame.parentNode.removeChild(topFrame); 15 topFrame.parentNode.removeChild(topFrame);
16 } 16 }
17 </script> 17 </script>
18 <frameset id="frameset"> 18 <frameset id="frameset">
19 <frame id="topFrame"/> 19 <frame id="topFrame"/>
20 <frame/> 20 <frame/>
21 </frameset> 21 </frameset>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/selection/invalid-in-RenderView-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698