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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableElement.idl

Issue 1493673002: Drop [LegacyInterfaceTypeChecking] for HTMLTableElement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « third_party/WebKit/LayoutTests/fast/dom/setter-type-enforcement-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLTableElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLTableElement.idl b/third_party/WebKit/Source/core/html/HTMLTableElement.idl
index 09e0a65f31aad49aec5a5612524fa5ab888bb7b5..b36de85c1d1a8b332168e9c14f5db4a6438e567e 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTableElement.idl
@@ -22,13 +22,13 @@
interface HTMLTableElement : HTMLElement {
// TODO(philipj): The caption, tHead and tFoot setters should never throw.
- [RaisesException=Setter, LegacyInterfaceTypeChecking] attribute HTMLTableCaptionElement? caption;
+ [RaisesException=Setter] attribute HTMLTableCaptionElement? caption;
HTMLTableCaptionElement createCaption();
void deleteCaption();
- [RaisesException=Setter, LegacyInterfaceTypeChecking] attribute HTMLTableSectionElement? tHead;
+ [RaisesException=Setter] attribute HTMLTableSectionElement? tHead;
HTMLTableSectionElement createTHead();
void deleteTHead();
- [RaisesException=Setter, LegacyInterfaceTypeChecking] attribute HTMLTableSectionElement? tFoot;
+ [RaisesException=Setter] attribute HTMLTableSectionElement? tFoot;
HTMLTableSectionElement createTFoot();
void deleteTFoot();
readonly attribute HTMLCollection tBodies;
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/dom/setter-type-enforcement-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698