Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / remove-redundant-styles-and-keep-style-span-inline-crashed.html
blobf148da079dad3ad061d86334e2c50c7ba9b475a7
1 <!DOCTYPE html>
2 <head>
3 <style>
4 * {
5 border-image-source: url(foo);
6 background-position-x: 2147483470%;
7 font-style: normal;
9 </style>
10 </head>
11 <body>
12 <i>PASS if Blink doesn't crash.</i>
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>