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

Side by Side Diff: Source/WebCore/page/DOMWindow.idl

Issue 11410062: Merge 133429 - Shadow DOM should be able to be disabled per context. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 8 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 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 // attribute DOMErrorConstructor DOMError; 385 // attribute DOMErrorConstructor DOMError;
386 // attribute DOMErrorHandlerConstructor DOMErrorHandler 386 // attribute DOMErrorHandlerConstructor DOMErrorHandler
387 // attribute DOMLocatorConstructor DOMLocator; 387 // attribute DOMLocatorConstructor DOMLocator;
388 // attribute DOMConfigurationConstructor DOMConfiguration; 388 // attribute DOMConfigurationConstructor DOMConfiguration;
389 attribute CDATASectionConstructor CDATASection; 389 attribute CDATASectionConstructor CDATASection;
390 attribute DocumentTypeConstructor DocumentType; 390 attribute DocumentTypeConstructor DocumentType;
391 attribute NotationConstructor Notation; 391 attribute NotationConstructor Notation;
392 attribute EntityConstructor Entity; 392 attribute EntityConstructor Entity;
393 attribute EntityReferenceConstructor EntityReference; 393 attribute EntityReferenceConstructor EntityReference;
394 attribute ProcessingInstructionConstructor ProcessingInstruction; 394 attribute ProcessingInstructionConstructor ProcessingInstruction;
395 [Conditional=SHADOW_DOM, V8EnabledAtRuntime=shadowDOM] attribute ShadowRootC onstructor WebKitShadowRoot; 395 [Conditional=SHADOW_DOM, V8EnabledPerContext=shadowDOM] attribute ShadowRoot Constructor WebKitShadowRoot;
396 [Conditional=SHADOW_DOM, V8EnabledAtRuntime=shadowDOM] attribute HTMLContent ElementConstructor HTMLContentElement; 396 [Conditional=SHADOW_DOM, V8EnabledPerContext=shadowDOM] attribute HTMLConten tElementConstructor HTMLContentElement;
397 [Conditional=SHADOW_DOM, V8EnabledAtRuntime=shadowDOM] attribute HTMLShadowE lementConstructor HTMLShadowElement; 397 [Conditional=SHADOW_DOM, V8EnabledPerContext=shadowDOM] attribute HTMLShadow ElementConstructor HTMLShadowElement;
398 398
399 attribute DOMSelectionConstructor Selection; 399 attribute DOMSelectionConstructor Selection;
400 attribute DOMWindowConstructor Window; 400 attribute DOMWindowConstructor Window;
401 401
402 attribute HTMLDocumentConstructor HTMLDocument; 402 attribute HTMLDocumentConstructor HTMLDocument;
403 attribute HTMLElementConstructor HTMLElement; 403 attribute HTMLElementConstructor HTMLElement;
404 attribute HTMLAnchorElementConstructor HTMLAnchorElement; 404 attribute HTMLAnchorElementConstructor HTMLAnchorElement;
405 attribute HTMLAppletElementConstructor HTMLAppletElement; 405 attribute HTMLAppletElementConstructor HTMLAppletElement;
406 attribute HTMLAreaElementConstructor HTMLAreaElement; 406 attribute HTMLAreaElementConstructor HTMLAreaElement;
407 attribute HTMLBRElementConstructor HTMLBRElement; 407 attribute HTMLBRElementConstructor HTMLBRElement;
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB ufferListConstructor WebKitSourceBufferList; 791 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB ufferListConstructor WebKitSourceBufferList;
792 792
793 #endif // defined(LANGUAGE_JAVASCRIPT) 793 #endif // defined(LANGUAGE_JAVASCRIPT)
794 794
795 #if defined(V8_BINDING) && V8_BINDING 795 #if defined(V8_BINDING) && V8_BINDING
796 // window.toString() requires special handling in V8 796 // window.toString() requires special handling in V8
797 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString toString(); 797 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString toString();
798 #endif // defined(V8_BINDING) 798 #endif // defined(V8_BINDING)
799 }; 799 };
800 800
OLDNEW
« no previous file with comments | « Source/WebCore/html/shadow/HTMLContentElement.cpp ('k') | Source/WebKit/chromium/src/ContextFeaturesClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698