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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html

Issue 2542073002: DevTools: [Persistence] validate persistence binding. (Closed)
Patch Set: rebaseline tests Created 4 years 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-merge-editor-tabs.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html
index 13860925441351a7c2b4f2f321b65635368192bc..1f54abd26bfe7e2e8cb66bdeaa6008d7a97d122b 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html
@@ -38,15 +38,9 @@ function test()
function openFileSystemTab(next)
{
InspectorTest.waitForUISourceCode("foo.js", Workspace.projectTypes.FileSystem)
- .then(onFileSystemSourceCode)
+ .then(code => InspectorTest.showUISourceCodePromise(code))
.then(onFileSystemTab);
- function onFileSystemSourceCode(code)
- {
- code.setWorkingCopy("\n\nwindow.foo = ()=>'foo2';");
- return InspectorTest.showUISourceCodePromise(code);
- }
-
function onFileSystemTab(sourceFrame)
{
fileSystemSourceFrame = sourceFrame;
@@ -108,6 +102,6 @@ function test()
</script>
</head>
<body onload="runTest()">
-<p>Verify that tabs get merged and split when binding is added and removed.</p>
+<p>Verify that tabs get merged when binding is added and removed.</p>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698