blob: f148da079dad3ad061d86334e2c50c7ba9b475a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<head>
<style>
* {
border-image-source: url(foo);
background-position-x: 2147483470%;
font-style: normal;
}
</style>
</head>
<body>
<i>PASS if Blink doesn't crash.</i>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.designMode = 'on';
document.execCommand('SelectAll');
document.execCommand('Cut');
document.execCommand('Paste');
</script>
</body>
|