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

Side by Side Diff: LayoutTests/svg/foreignObject/fO-fixed-position-crash.html

Issue 10533113: Merge 119914 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 6 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/svg/foreignObject/fO-fixed-position-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 <!-- Test for https://bugs.webkit.org/show_bug.cgi?id=88547 --> 4 <!-- Test for https://bugs.webkit.org/show_bug.cgi?id=88547 -->
5 <svg xmlns="http://www.w3.org/2000/svg"> 5 <svg xmlns="http://www.w3.org/2000/svg">
6 <foreignObject> 6 <foreignObject>
7 <div id="div" style="position:fixed; height:50%; counter-increment:inherit;" >Passes if replacing this text doesn't cause a crash.</div> 7 <div id="div" style="position:fixed; height:50%; counter-increment:inherit;" >Passes if replacing this text doesn't cause a crash.</div>
8 </foreignObject> 8 </foreignObject>
9 9
10 <script> 10 <script>
11 window.onload=function() { 11 window.onload=function() {
12 document.designMode="on"; 12 document.designMode="on";
13 document.execCommand("SelectAll"); 13 document.execCommand("SelectAll");
14 document.getElementById('div').innerHTML = "PASS"; 14 document.getElementById('div').innerHTML = "PASS";
15 }; 15 };
16 16
17 if (window.layoutTestController) 17 if (window.layoutTestController)
18 layoutTestController.dumpAsText(); 18 layoutTestController.dumpAsText();
19 </script> 19 </script>
20 </svg> 20 </svg>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/foreignObject/fO-fixed-position-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698