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

Side by Side Diff: LayoutTests/editing/execCommand/selectAll-including-marquee-crash.html

Issue 165933002: Fix the crash bug about selecting a marquee element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update Created 6 years, 10 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/execCommand/selectAll-including-marquee-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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 marquee {
4 padding-bottom: 1px;
5 }
6 </style>
7 <body>
8 <marquee>
9 aa
10 <table></table>
11 </marquee>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 document.designMode = "on";
16 document.execCommand("SelectAll");
17 document.execCommand("InsertHTML", false);
18 document.documentElement.innerHTML = '<title>a</title>This test passes i f it does not crash.';
19 </script>
20 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/execCommand/selectAll-including-marquee-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698