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

Side by Side Diff: LayoutTests/fast/ruby/modify-positioned-ruby-text-crash.html

Issue 10262008: Merge 114666 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 7 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
OLDNEW
1 <script> 1 <script>
2 window.onload = function() { 2 window.onload = function() {
3 var oSelection=window.getSelection(); 3 var oSelection=window.getSelection();
4 document.execCommand("SelectAll", false, false) 4 document.execCommand("SelectAll", false, false)
5 var oRange = oSelection.getRangeAt(0); 5 var oRange = oSelection.getRangeAt(0);
6 var oDocumentFragment = oRange.extractContents(); 6 var oDocumentFragment = oRange.extractContents();
7 7
8 document.body.appendChild(document.createTextNode('PASS, if no assert or cra sh in debug')); 8 document.body.appendChild(document.createTextNode('PASS, if no assert or cra sh in debug'));
9 9
10 if (window.layoutTestController) 10 if (window.layoutTestController)
11 layoutTestController.dumpAsText(); 11 layoutTestController.dumpAsText();
12 } 12 }
13 </script> 13 </script>
14 <style> 14 <style>
15 *{word-break:inherit;text-rendering:optimizeLegibility;} 15 *{word-break:inherit;text-rendering:optimizeLegibility;}
16 .fixedNavDown{nav-down:#;position:fixed; } 16 .fixedNavDown{nav-down:#;position:fixed; }
17 </style> 17 </style>
18 18
19 <ruby><rt class="fixedNavDown">A</rt></ruby> 19 <ruby><rt class="fixedNavDown">A</rt></ruby>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698