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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Window/resources/window-property-collector.js

Issue 1475863005: [Async][WIP] Call FrameLoader::checkCompleted() asynchronously to avoid sync body.onload() Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 10 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/fast/dom/Window/resources/window-property-collector.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Window/resources/window-property-collector.js b/third_party/WebKit/LayoutTests/fast/dom/Window/resources/window-property-collector.js
index 5cbd31604727f7d460aacdc363de3862d429c387..fd13b618dc530a1ed1b3f0bafba7e9721bd77bcf 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/Window/resources/window-property-collector.js
+++ b/third_party/WebKit/LayoutTests/fast/dom/Window/resources/window-property-collector.js
@@ -22,7 +22,13 @@ function emitExpectedResult(path, expected)
|| path[0] == 'clientInformation' // Just an alias for navigator.
|| path[0] == 'testRunner' // Skip testRunner since they are only for testing.
|| path[0] == 'layoutTestController' // Just an alias for testRunner.
- || path[0] == 'eventSender') { // Skip eventSender since they are only for testing.
+ || path[0] == 'eventSender' // Skip eventSender since they are only for testing.
+ // Skip variables related to js-test.js since they are only for testing.
+ || path[0] == 'isJsTest'
+ || path[0] == 'jsTestIsAsync'
+ || path[0] == 'successfullyParsed'
+ || path[0] == 'wasFinishJSTestCalled'
+ || path[0] == 'wasPostTestScriptParsed') {
return;
}

Powered by Google App Engine
This is Rietveld 408576698