diff options
Diffstat (limited to 'WebCore/page/DOMWindow.idl')
-rw-r--r-- | WebCore/page/DOMWindow.idl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/WebCore/page/DOMWindow.idl b/WebCore/page/DOMWindow.idl index 5b1000a..20eab8b 100644 --- a/WebCore/page/DOMWindow.idl +++ b/WebCore/page/DOMWindow.idl @@ -195,6 +195,11 @@ module window { raises(DOMException); #endif +#if defined(ENABLE_WEB_TIMING) && ENABLE_WEB_TIMING + // FIXME: Remove vendor prefix. + readonly attribute Performance webkitPerformance; +#endif + // Timers [Custom] long setTimeout(in TimeoutHandler handler, in long timeout); // [Custom] long setTimeout(in TimeoutHandler handler, in long timeout, arguments...); @@ -456,6 +461,10 @@ module window { attribute [Conditional=3D_CANVAS,EnabledAtRuntime] WebGLRenderingContextConstructor WebGLRenderingContext; attribute TextMetricsConstructor TextMetrics; +#if !defined(V8_BINDING) || !V8_BINDING + attribute DOMStringMapConstructor DOMStringMap; +#endif + attribute [JSCCustomGetter,Conditional=3D_CANVAS,EnabledAtRuntime] ArrayBufferConstructor ArrayBuffer; // Usable with new operator attribute [JSCCustomGetter,Conditional=3D_CANVAS,EnabledAtRuntime] Int8ArrayConstructor Int8Array; // Usable with new operator attribute [JSCCustomGetter,Conditional=3D_CANVAS,EnabledAtRuntime] Uint8ArrayConstructor Uint8Array; // Usable with new operator @@ -706,7 +715,7 @@ module window { attribute SVGFEColorMatrixElementConstructor SVGFEColorMatrixElement; attribute SVGFEComponentTransferElementConstructor SVGFEComponentTransferElement; attribute SVGFECompositeElementConstructor SVGFECompositeElement; -// attribute SVGFEConvolveMatrixElementConstructor SVGFEConvolveMatrixElement; + attribute SVGFEConvolveMatrixElementConstructor SVGFEConvolveMatrixElement; attribute SVGFEDiffuseLightingElementConstructor SVGFEDiffuseLightingElement; attribute SVGFEDisplacementMapElementConstructor SVGFEDisplacementMapElement; attribute SVGFEDistantLightElementConstructor SVGFEDistantLightElement; @@ -752,3 +761,4 @@ module window { }; } + |