| Index: third_party/WebKit/LayoutTests/fast/block/float/overhanging-float-overflow-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/block/float/overhanging-float-overflow-crash.html b/third_party/WebKit/LayoutTests/fast/block/float/overhanging-float-overflow-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c7baeac39f158a8bd353401bb3564fe94edd4f98
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/block/float/overhanging-float-overflow-crash.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +* {
|
| + height: 4px;
|
| +}
|
| +span {
|
| + float: left;
|
| + box-shadow: 1px 1px 1e8px red;
|
| +}
|
| +div {
|
| + margin-top: 1e8px;
|
| +}
|
| +</style>
|
| +<div></div><span></span>
|
| +<script>
|
| + // Test for https://crbug.com/604331: this test passes if it does not crash.
|
| + document.documentElement.appendChild(document.createTextNode('PASS'));
|
| +
|
| + if (testRunner)
|
| + testRunner.dumpAsText();
|
| +</script>
|
|
|