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

Side by Side Diff: LayoutTests/svg/custom/bug79798.html

Issue 9569050: Merge 109299 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 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
OLDNEW
1 <!-- This test passes if there is no crash. --> 1 <!-- This test passes if there is no crash. -->
2 <!-- It was created by the fuzzer and has been reduced. --> 2 <!-- It was created by the fuzzer and has been reduced. -->
3 <script> 3 <script>
4 function go() { 4 function go() {
5 5
6 if (window.layoutTestController) 6 if (window.layoutTestController)
7 layoutTestController.dumpAsText(); 7 layoutTestController.dumpAsText();
8 8
9 q = document.getElementById('root').contentDocument; 9 q = document.getElementById('root').contentDocument;
10 10
11 r = document.createRange(); 11 r = document.createRange();
12 s = window.getSelection(); 12 s = window.getSelection();
13 13
14 r.selectNodeContents( q.getElementById('g') ); 14 r.selectNodeContents( q.getElementById('g') );
15 s.addRange( r ); 15 s.addRange( r );
16 16
17 document.designMode = 'on'; 17 document.designMode = 'on';
18 q.execCommand('formatBlock', 1, 'h1'); 18 q.execCommand('formatBlock', 1, 'h1');
19 q.execCommand('formatBlock', 1, 'h1'); 19 q.execCommand('formatBlock', 1, 'h1');
20 q.execCommand('formatBlock', 1, 'h1'); 20 q.execCommand('formatBlock', 1, 'h1');
21 document.open(); 21 document.open();
22 } 22 }
23 </script> 23 </script>
24 <object data="resources/bug79798.svg" id="root" onload="go()"/</object> 24 <object data="resources/bug79798.svg" id="root" onload="go()"/</object>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/bug78838-expected.txt ('k') | LayoutTests/svg/custom/bug79798-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698