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

Side by Side Diff: client/dom/generated/src/frog/Document.dart

Issue 8879007: Enable fullscreen API and file system API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class Document extends Node native "Document" { 2 class Document extends Node native "Document" {
3 3
4 String URL; 4 String URL;
5 5
6 HTMLCollection anchors; 6 HTMLCollection anchors;
7 7
8 HTMLCollection applets; 8 HTMLCollection applets;
9 9
10 HTMLElement body; 10 HTMLElement body;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 String readyState; 50 String readyState;
51 51
52 String referrer; 52 String referrer;
53 53
54 String selectedStylesheetSet; 54 String selectedStylesheetSet;
55 55
56 StyleSheetList styleSheets; 56 StyleSheetList styleSheets;
57 57
58 String title; 58 String title;
59 59
60 Element webkitCurrentFullScreenElement;
61
62 bool webkitFullScreenKeyboardInputAllowed;
63
60 bool webkitHidden; 64 bool webkitHidden;
61 65
66 bool webkitIsFullScreen;
67
62 String webkitVisibilityState; 68 String webkitVisibilityState;
63 69
64 String xmlEncoding; 70 String xmlEncoding;
65 71
66 bool xmlStandalone; 72 bool xmlStandalone;
67 73
68 String xmlVersion; 74 String xmlVersion;
69 75
70 Node adoptNode(Node source) native; 76 Node adoptNode(Node source) native;
71 77
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 139
134 bool queryCommandState(String command) native; 140 bool queryCommandState(String command) native;
135 141
136 bool queryCommandSupported(String command) native; 142 bool queryCommandSupported(String command) native;
137 143
138 String queryCommandValue(String command) native; 144 String queryCommandValue(String command) native;
139 145
140 Element querySelector(String selectors) native; 146 Element querySelector(String selectors) native;
141 147
142 NodeList querySelectorAll(String selectors) native; 148 NodeList querySelectorAll(String selectors) native;
149
150 void webkitCancelFullScreen() native;
143 } 151 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMWindow.dart ('k') | client/dom/generated/src/frog/Element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698