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

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

Issue 14178009: Remove CSS_REGIONS compile flag from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rework patch after https://codereview.chromium.org/14324009 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 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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 attribute StorageEventConstructor StorageEvent; 522 attribute StorageEventConstructor StorageEvent;
523 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput Event; 523 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput Event;
524 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent ; 524 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent ;
525 [EnabledAtRuntime=requestAutocomplete] attribute AutocompleteErrorEventConst ructor AutocompleteErrorEvent; 525 [EnabledAtRuntime=requestAutocomplete] attribute AutocompleteErrorEventConst ructor AutocompleteErrorEvent;
526 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute Secur ityPolicyViolationEventConstructor SecurityPolicyViolationEvent; 526 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute Secur ityPolicyViolationEventConstructor SecurityPolicyViolationEvent;
527 527
528 attribute EventExceptionConstructor EventException; 528 attribute EventExceptionConstructor EventException;
529 529
530 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule; 530 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule;
531 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule; 531 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule;
532 [Conditional=CSS_REGIONS, EnabledAtRuntime=cssRegions] attribute WebKitCSSRe gionRuleConstructor WebKitCSSRegionRule; 532 [EnabledAtRuntime=cssRegions] attribute WebKitCSSRegionRuleConstructor WebKi tCSSRegionRule;
533 533
534 attribute WebKitCSSMatrixConstructor WebKitCSSMatrix; // Usable with the new operator 534 attribute WebKitCSSMatrixConstructor WebKitCSSMatrix; // Usable with the new operator
535 535
536 attribute DOMPointConstructor WebKitPoint; // Usable with new the operator 536 attribute DOMPointConstructor WebKitPoint; // Usable with new the operator
537 537
538 attribute ClipboardConstructor Clipboard; 538 attribute ClipboardConstructor Clipboard;
539 539
540 attribute WorkerConstructor Worker; // Usable with the new operator 540 attribute WorkerConstructor Worker; // Usable with the new operator
541 [EnabledAtRuntime] attribute SharedWorkerConstructor SharedWorker; // Usable with the new operator 541 [EnabledAtRuntime] attribute SharedWorkerConstructor SharedWorker; // Usable with the new operator
542 542
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 attribute MutationRecordConstructor MutationRecord; 750 attribute MutationRecordConstructor MutationRecord;
751 751
752 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource; 752 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource;
753 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer; 753 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer;
754 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList; 754 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList;
755 755
756 // window.toString() requires special handling in V8 756 // window.toString() requires special handling in V8
757 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 757 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
758 }; 758 };
759 759
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698