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

Side by Side Diff: LayoutTests/css3/flexbox/insert-text-crash.html

Issue 1088633002: Unprefix flexbox tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: whoops, a > went missing Created 5 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <style> 1 <style>
2 #el2 { 2 #el2 {
3 display: -webkit-flex; 3 display: flex;
4 border: 1px solid red; 4 border: 1px solid red;
5 } 5 }
6 #el3 { 6 #el3 {
7 position: absolute; 7 position: absolute;
8 border: 1px solid green; 8 border: 1px solid green;
9 } 9 }
10 </style> 10 </style>
11 <body contenteditable=true> 11 <body contenteditable=true>
12 <div id="el2"><div id="el3">AA </div></div> 12 <div id="el2"><div id="el3">AA </div></div>
13 </body> 13 </body>
14 <script> 14 <script>
15 if (window.testRunner) 15 if (window.testRunner)
16 testRunner.dumpAsText(); 16 testRunner.dumpAsText();
17 document.execCommand('selectall') 17 document.execCommand('selectall')
18 document.execCommand('inserttext', '') 18 document.execCommand('inserttext', '')
19 document.body.innerText = "This test passes if it does not crash."; 19 document.body.innerText = "This test passes if it does not crash.";
20 </script> 20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698