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

Unified Diff: third_party/WebKit/Source/devtools/scripts/jsdoc_validator/tests/document.js

Issue 2464463002: Revert of DevTools: clean up scripts folder (Closed)
Patch Set: Created 4 years, 2 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/Source/devtools/scripts/jsdoc_validator/tests/document.js
diff --git a/third_party/WebKit/Source/devtools/scripts/jsdoc_validator/tests/document.js b/third_party/WebKit/Source/devtools/scripts/jsdoc_validator/tests/document.js
deleted file mode 100644
index 07c19faf78a61284bbf8a236a29a23aceaf334ed..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/devtools/scripts/jsdoc_validator/tests/document.js
+++ /dev/null
@@ -1,68 +0,0 @@
-document.bar();
-window.document.bar();
-bar.document();
-bar.window.document();
-document();
-var x = window.document;
-
-function a(document) {
- document.bar();
- document();
-
- function inner() {
- var y = document;
- }
-}
-
-function b(bar) {
- document.bar();
- document();
- var document = bar;
-}
-
-function c(bar) {
- document.bar();
- document();
- var inner = document + bar;
-}
-
-function d(window) {
- window.document();
- window.document.bar = 2;
-}
-
-/**
- * @suppressGlobalPropertiesCheck
- * @param {string} param
- */
-function e(param) {
- document;
- window.document;
-}
-
-/**
- * @param {string} param
- */
-function f(param) {
- document;
- window.document;
-}
-
-var y = x.document;
-window.x.document();
-var z = document.document;
-var bar = window + window.document;
-
-self.document = bar;
-self.addEventListener();
-self.removeEventListener();
-self.requestAnimationFrame();
-window.cancelAnimationFrame();
-getSelection();
-
-function g() {
- var self = this;
- self.document;
-}
-
-function h() { var a = { document: true }; }

Powered by Google App Engine
This is Rietveld 408576698