| Index: third_party/WebKit/LayoutTests/printing/webgl-oversized-printing.html
|
| diff --git a/third_party/WebKit/LayoutTests/printing/webgl-oversized-printing.html b/third_party/WebKit/LayoutTests/printing/webgl-oversized-printing.html
|
| deleted file mode 100644
|
| index 8cc5242c178d322f4949e0bd39cfba79eb5c556a..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/printing/webgl-oversized-printing.html
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -<!-- This is a regression test for crbug.com/537711, in which printing
|
| - was causing a crash on the main thread of the render process -->
|
| -<head>
|
| -<script src="../resources/js-test.js"></script>
|
| -</head>
|
| -<body>
|
| -<div id="console"></div>
|
| -<script>
|
| -var can = document.createElement('canvas');
|
| -can.width = can.height = 64000;
|
| -document.body.appendChild(can);
|
| -var ctx = can.getContext("webgl");
|
| -ctx.clearColor(0, 0, 0, 1);
|
| -ctx.clear(ctx.COLOR_BUFFER_BIT);
|
| -
|
| -if (!window.testRunner) {
|
| - testFailed("Requires window.testRunner");
|
| -} else {
|
| - testRunner.setPrinting();
|
| - testRunner.waitUntilDone();
|
| - testRunner.capturePixelsAsyncThen(function() {
|
| - testRunner.clearPrinting();
|
| - testPassed("Printed without crashing.");
|
| - testRunner.notifyDone();
|
| - });
|
| -}
|
| -</script>
|
| -</body>
|
|
|