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

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: 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
OLDNEW
(Empty)
1 <style>
leviw_travelin_and_unemployed 2014/02/14 04:57:46 Let's clean this up a bit more with a doctype and
yoichio 2014/02/19 08:00:30 Done.
2 marquee {
3 padding-bottom: 1px;
4 }
5 </style>
6
leviw_travelin_and_unemployed 2014/02/14 04:57:46 And a body :)
yoichio 2014/02/19 08:00:30 Done.
7 <marquee>
8 aa
leviw_travelin_and_unemployed 2014/02/14 04:57:46 I suspect you could simply put "Test passes if it
yoichio 2014/02/19 08:00:30 This test case executes "SelectAll" and "InsertHTM
9 <table></table>
10 </marquee>
11
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 if it does not crash.';
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698