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

Unified Diff: dom/Document.idl

Issue 14107003: Update WebKit IDLs after chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: reupload again. Created 7 years, 8 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
« no previous file with comments | « dom/DataTransferItemList.idl ('k') | dom/DocumentType.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dom/Document.idl
diff --git a/dom/Document.idl b/dom/Document.idl
index 391a5edc1dae0643d57349232dc4a8c2c7d7fa49..2f0a2a9c022fc79aec4a5fa298e68c338915ae8e 100644
--- a/dom/Document.idl
+++ b/dom/Document.idl
@@ -19,9 +19,7 @@
*/
[
- CustomToJSObject,
- JSGenerateToNativeObject,
- JSInlineGetOwnPropertySlot
+ CustomToJSObject
] interface Document : Node {
// DOM Level 1 Core
@@ -247,7 +245,6 @@
NodeList querySelectorAll(in DOMString selectors)
raises(DOMException);
-#if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API
// Mozilla version
[V8EnabledAtRuntime] readonly attribute boolean webkitIsFullScreen;
[V8EnabledAtRuntime] readonly attribute boolean webkitFullScreenKeyboardInputAllowed;
@@ -258,7 +255,6 @@
[V8EnabledAtRuntime] readonly attribute boolean webkitFullscreenEnabled;
[V8EnabledAtRuntime] readonly attribute Element webkitFullscreenElement;
[V8EnabledAtRuntime] void webkitExitFullscreen();
-#endif
[Conditional=POINTER_LOCK] void webkitExitPointerLock();
[Conditional=POINTER_LOCK] readonly attribute Element webkitPointerLockElement;
@@ -340,11 +336,11 @@
[NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchmove;
[NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchend;
[NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchcancel;
- [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkitfullscreenchange;
- [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkitfullscreenerror;
+ [NotEnumerable] attribute EventListener onwebkitfullscreenchange;
+ [NotEnumerable] attribute EventListener onwebkitfullscreenerror;
[NotEnumerable, Conditional=POINTER_LOCK] attribute EventListener onwebkitpointerlockchange;
[NotEnumerable, Conditional=POINTER_LOCK] attribute EventListener onwebkitpointerlockerror;
- [NotEnumerable, Conditional=CSP_NEXT, V8EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation;
+ [NotEnumerable, V8EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation;
#endif
#if defined(ENABLE_TOUCH_EVENTS) && ENABLE_TOUCH_EVENTS
@@ -380,11 +376,11 @@
#endif
// Page visibility API.
- [Conditional=PAGE_VISIBILITY_API] readonly attribute DOMString webkitVisibilityState;
- [Conditional=PAGE_VISIBILITY_API] readonly attribute boolean webkitHidden;
+ readonly attribute DOMString webkitVisibilityState;
+ readonly attribute boolean webkitHidden;
// Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-file/tip/csp-specification.dev.html#script-interfaces
- [Conditional=CSP_NEXT, V8EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attribute DOMSecurityPolicy securityPolicy;
+ [V8EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attribute DOMSecurityPolicy securityPolicy;
};
« no previous file with comments | « dom/DataTransferItemList.idl ('k') | dom/DocumentType.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698