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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content-nodejs-expected.txt

Issue 2349343002: DevTools: introduce persistence/ module (Closed)
Patch Set: reupload Created 4 years, 3 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/http/tests/inspector/persistence/persistence-sync-content-nodejs-expected.txt
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content-nodejs-expected.txt b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content-nodejs-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..dc91277529e1bcb18b460e1f367661c19d916184
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content-nodejs-expected.txt
@@ -0,0 +1,39 @@
+Verify that syncing Node.js contents works fine.
+
+Binding created: {
+ network: http://127.0.0.1:8000/nodejs.js
+ fileSystem: file:///var/www/nodejs.js
+}
+
+Running: Edit network uiSourceCode
dgozman 2016/09/23 23:03:21 Let's dump before.
lushnikov 2016/09/24 00:30:50 Done.
+Network:
+ (function (exports, require, module, __filename, __dirname) {
+ var express = require("express");
+ network();
+ //TODO
+ });
+
+FileSystem:
+ #!/usr/bin/env node
+
+ var express = require("express");
+ network();
+ //TODO
+
+
+Running: Edit fileSystem uiSourceCode
+Network:
+ (function (exports, require, module, __filename, __dirname) {
+ var express = require("express");
+ filesystem();
+ //TODO
+ });
+
+FileSystem:
+ #!/usr/bin/env node
+
+ var express = require("express");
+ filesystem();
+ //TODO
+
+

Powered by Google App Engine
This is Rietveld 408576698