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

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

Issue 1629403003: Merge DOMSettableTokensList into DOMTokensList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar fixed tests Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLLinkElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.idl b/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
index 74ae8a29e02267f3f5d50ea9882c3c139c7bc757..1d19a864b8a314db3c13667583ad367acb33b99b 100644
--- a/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
@@ -28,12 +28,12 @@ interface HTMLLinkElement : HTMLElement {
[Reflect, URL] attribute DOMString href;
[Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
[Reflect] attribute DOMString rel;
- [RuntimeEnabled=LinkPreload] readonly attribute DOMTokenList relList;
+ [RuntimeEnabled=LinkPreload, PutForwards=value] readonly attribute DOMTokenList relList;
tkent 2016/02/16 03:45:11 Can you do this change in a separated CL?
Yoav Weiss 2016/02/16 09:12:00 sure
[Reflect] attribute DOMString media;
[Reflect] attribute DOMString hreflang;
[Reflect] attribute DOMString type;
[Reflect, RuntimeEnabled=LinkPreload] attribute DOMString as;
- [PutForwards=value] readonly attribute DOMSettableTokenList sizes;
+ [PutForwards=value] readonly attribute DOMTokenList sizes;
// obsolete members
// https://html.spec.whatwg.org/#HTMLLinkElement-partial

Powered by Google App Engine
This is Rietveld 408576698