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

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

Issue 2441163002: DevTools: clean up scripts folder (Closed)
Patch Set: Fix sys.path for chromevox to load rjsmin Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 document.bar(); 1 document.bar();
2 window.document.bar(); 2 window.document.bar();
3 bar.document(); 3 bar.document();
4 bar.window.document(); 4 bar.window.document();
5 document(); 5 document();
6 var x = window.document; 6 var x = window.document;
7 7
8 function a(document) { 8 function a(document) {
9 document.bar(); 9 document.bar();
10 document(); 10 document();
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 self.requestAnimationFrame(); 59 self.requestAnimationFrame();
60 window.cancelAnimationFrame(); 60 window.cancelAnimationFrame();
61 getSelection(); 61 getSelection();
62 62
63 function g() { 63 function g() {
64 var self = this; 64 var self = this;
65 self.document; 65 self.document;
66 } 66 }
67 67
68 function h() { var a = { document: true }; } 68 function h() { var a = { document: true }; }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698