Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <head> | |
| 3 <style> | |
| 4 * { | |
| 5 border-image-source: url(foo); | |
| 6 background-position-x: 2147483470%; | |
| 7 font-style: normal; | |
| 8 } | |
| 9 </style> | |
| 10 </head> | |
| 11 <body> | |
| 12 <i>PASS if Blink isn't crashed.</i> | |
|
Yuta Kitamura
2014/03/27 02:03:23
nit: isn't crashed -> doesn't crash
yosin_UTC9
2014/03/27 03:30:09
Done.
| |
| 13 <script> | |
| 14 if (window.testRunner) | |
| 15 testRunner.dumpAsText(); | |
| 16 document.designMode = 'on'; | |
| 17 document.execCommand('SelectAll'); | |
| 18 document.execCommand('Cut'); | |
| 19 document.execCommand('Paste'); | |
| 20 </script> | |
| 21 </body> | |
| OLD | NEW |