Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(569)

Unified Diff: third_party/WebKit/LayoutTests/inspector/inspector-backend-commands-generation.html

Issue 2109243003: Introduce --remote-debugging-frontend switch for custom remote debugging front-end (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: support absolute path instead of HTTP endpoint Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/inspector-backend-commands-generation.html
diff --git a/third_party/WebKit/LayoutTests/inspector/inspector-backend-commands-generation.html b/third_party/WebKit/LayoutTests/inspector/inspector-backend-commands-generation.html
deleted file mode 100644
index fe2d56538287120f6b9baf6e5d40d346045a8e55..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector/inspector-backend-commands-generation.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<script src="../http/tests/inspector/inspector-test.js"></script>
-<script>
-function test()
-{
- var inspectorJson = {"domains": [{
- "domain": "Page",
- "types": [{
- "id": "ResourceType",
- "type": "string",
- "enum": ["Document", "XHR", "console-api", "other"]
- }],
- "commands": [{
- "name": "addScriptToEvaluateOnLoad",
- "parameters": [
- {"name": "scriptSource", "type": "string"}
- ],
- "returns": [
- {"name": "identifier", "type": "string"}
- ]
- }],
- "events": [{
- "name": "domContentEventFired",
- "parameters": [
- {"name": "timestamp", "type": "number"}
- ]
- }]
- }]};
- var commands = WebInspector.InspectorBackendHostedMode.generateCommands(inspectorJson);
- InspectorTest.addResult(commands);
- InspectorTest.completeTest();
-}
-</script>
-</head>
-<body onload="runTest()">
-<p>Tests correctness of code generated by InspectorBackend.</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698