Index: third_party/WebKit/LayoutTests/inspector-protocol/emulation/default-background-color-cleared.html |
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/emulation/default-background-color-cleared.html b/third_party/WebKit/LayoutTests/inspector-protocol/emulation/default-background-color-cleared.html |
deleted file mode 100644 |
index 0d15809d8de43a6fd43e7ccd22eef09d7eccd0ca..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/inspector-protocol/emulation/default-background-color-cleared.html |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
-<html> |
-<head> |
- |
-<style> |
-html { |
- margin: 0; |
-} |
-</style> |
- |
-<script src="../../http/tests/inspector-protocol/resources/inspector-protocol-test.js"></script> |
- |
-<script> |
-function test() |
-{ |
- InspectorTest.sendCommand("Runtime.evaluate", { "expression": "testRunner.dumpAsTextWithPixelResults();"} ); |
- |
- InspectorTest.sendCommand("Emulation.setDefaultBackgroundColorOverride", { "color": { "r": 0x12, "g": 0x34, "b": 0x56, "a": 1.0 } }, backgroundColorSet); |
- |
- function backgroundColorSet(messageObject) { |
- if (!!messageObject.result.exceptionDetails) |
- InspectorTest.log("FAIL: unexpected exception: " + JSON.stringify(messageObject, null, 2)); |
- InspectorTest.sendCommand("Emulation.setDefaultBackgroundColorOverride", {}, backgroundColorCleared); |
- } |
- |
- function backgroundColorCleared(messageObject) { |
- if (!!messageObject.result.exceptionDetails) |
- InspectorTest.log("FAIL: unexpected exception: " + JSON.stringify(messageObject, null, 2)); |
- |
- // Complete the test without closing the inspector, so that the override stays active for the picture. |
- InspectorTest.sendCommand("Runtime.evaluate", { "expression": "testRunner.notifyDone();"} ); |
- } |
-} |
-</script> |
- |
-</head> |
-<body onload="runTest()"> |
-<p> |
-Tests that resetting Emulation.setDefaultBackgroundColorOverride clears the background color override. |
-</p> |
-</body> |
-</html> |