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

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

Issue 14859003: Remove the compile time flag for DATALIST Element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 attribute HTMLElementConstructor HTMLElement; 364 attribute HTMLElementConstructor HTMLElement;
365 attribute HTMLAnchorElementConstructor HTMLAnchorElement; 365 attribute HTMLAnchorElementConstructor HTMLAnchorElement;
366 attribute HTMLAppletElementConstructor HTMLAppletElement; 366 attribute HTMLAppletElementConstructor HTMLAppletElement;
367 attribute HTMLAreaElementConstructor HTMLAreaElement; 367 attribute HTMLAreaElementConstructor HTMLAreaElement;
368 attribute HTMLBRElementConstructor HTMLBRElement; 368 attribute HTMLBRElementConstructor HTMLBRElement;
369 attribute HTMLBaseElementConstructor HTMLBaseElement; 369 attribute HTMLBaseElementConstructor HTMLBaseElement;
370 attribute HTMLBodyElementConstructor HTMLBodyElement; 370 attribute HTMLBodyElementConstructor HTMLBodyElement;
371 attribute HTMLButtonElementConstructor HTMLButtonElement; 371 attribute HTMLButtonElementConstructor HTMLButtonElement;
372 attribute HTMLCanvasElementConstructor HTMLCanvasElement; 372 attribute HTMLCanvasElementConstructor HTMLCanvasElement;
373 attribute HTMLDListElementConstructor HTMLDListElement; 373 attribute HTMLDListElementConstructor HTMLDListElement;
374 [Conditional=DATALIST_ELEMENT] attribute HTMLDataListElementConstructor HTML DataListElement; 374 attribute HTMLDataListElementConstructor HTMLDataListElement;
375 [EnabledPerContext=dialogElement] attribute HTMLDialogElementConstructor HTM LDialogElement; 375 [EnabledPerContext=dialogElement] attribute HTMLDialogElementConstructor HTM LDialogElement;
376 attribute HTMLDirectoryElementConstructor HTMLDirectoryElement; 376 attribute HTMLDirectoryElementConstructor HTMLDirectoryElement;
377 attribute HTMLDivElementConstructor HTMLDivElement; 377 attribute HTMLDivElementConstructor HTMLDivElement;
378 attribute HTMLEmbedElementConstructor HTMLEmbedElement; 378 attribute HTMLEmbedElementConstructor HTMLEmbedElement;
379 attribute HTMLFieldSetElementConstructor HTMLFieldSetElement; 379 attribute HTMLFieldSetElementConstructor HTMLFieldSetElement;
380 attribute HTMLFontElementConstructor HTMLFontElement; 380 attribute HTMLFontElementConstructor HTMLFontElement;
381 attribute HTMLFormElementConstructor HTMLFormElement; 381 attribute HTMLFormElementConstructor HTMLFormElement;
382 attribute HTMLFrameElementConstructor HTMLFrameElement; 382 attribute HTMLFrameElementConstructor HTMLFrameElement;
383 attribute HTMLFrameSetElementConstructor HTMLFrameSetElement; 383 attribute HTMLFrameSetElementConstructor HTMLFrameSetElement;
384 attribute HTMLHRElementConstructor HTMLHRElement; 384 attribute HTMLHRElementConstructor HTMLHRElement;
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 attribute MutationRecordConstructor MutationRecord; 746 attribute MutationRecordConstructor MutationRecord;
747 747
748 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource; 748 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource;
749 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer; 749 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer;
750 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList; 750 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList;
751 751
752 // window.toString() requires special handling in V8 752 // window.toString() requires special handling in V8
753 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 753 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
754 }; 754 };
755 755
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698