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

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

Issue 2502803002: Restrict scope attribute on table cells (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl b/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
index d7adc87977422c1db87f4f1f372ce600373b913b..07884bebcdabc9f5c56b4020fa2ed7ce8a0e7797 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
@@ -47,5 +47,5 @@ interface HTMLTableCellElement : HTMLElement {
// respectively. HTMLTableHeaderCellElement has the abbr and scope
// attributes, while HTMLTableDataCellElement has only abbr.
[CEReactions, Reflect] attribute DOMString abbr;
- [CEReactions] attribute DOMString scope;
+ [CEReactions, Reflect, ReflectOnly=("row","col", "rowgroup", "colgroup")] attribute DOMString scope;
tkent 2016/11/17 21:59:17 Add one space between |"row",| and |"col"|.
};

Powered by Google App Engine
This is Rietveld 408576698