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

Issue 2043503002: Add [CEReactions] IDL attributes for Custom Elements V1 (Closed)

Created:
4 years, 6 months ago by kojii
Modified:
4 years, 6 months ago
CC:
ajuma+watch-canvas_chromium.org, blink-reviews, blink-reviews-bindings_chromium.org, blink-reviews-dom_chromium.org, blink-reviews-html_chromium.org, blink-reviews-style_chromium.org, Rik, chromium-reviews, dglazkov+blink, dominicc+watchlist_chromium.org, dshwang, eae+blinkwatch, eric.carlson_apple.com, feature-media-reviews_chromium.org, fs, gavinp+prerender_chromium.org, gasubic, Justin Novosad, kenneth.christiansen, mlamouri+watch-blink_chromium.org, rwlbuis, sof, nessy, vcarbune.chromium, webcomponents-bugzilla_chromium.org, Yoav Weiss
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add [CEReactions] IDL attributes for Custom Elements V1 This patch adds: * [CEReactions] support in IDL parser. https://html.spec.whatwg.org/multipage/scripting.html#cereactions * [CEReactions] attributes to IDL from the following specs: https://dom.spec.whatwg.org/ https://html.spec.whatwg.org/ https://w3c.github.io/DOM-Parsing/ https://w3c.github.io/selection-api/ BUG=594918 Committed: https://crrev.com/a509fa4b0fa1a34fe113a10ad9502fa58f6c7fef Cr-Commit-Position: refs/heads/master@{#398352}

Patch Set 1 #

Patch Set 2 : Fix test #

Total comments: 4

Patch Set 3 : yukishiino review #

Total comments: 6

Patch Set 4 : yukishiino review #

Unified diffs Side-by-side diffs Delta from patch set Stats (+531 lines, -457 lines) Patch
M third_party/WebKit/Source/bindings/IDLExtendedAttributes.md View 1 2 2 chunks +15 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/IDLExtendedAttributes.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_attributes.py View 2 chunks +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_interface.py View 1 2 4 chunks +16 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_methods.py View 2 chunks +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/templates/attributes.cpp View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/templates/interface.cpp View 1 2 3 4 chunks +12 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/templates/methods.cpp View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Attr.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ChildNode.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMStringMap.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMTokenList.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Document.idl View 1 2 3 chunks +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Element.idl View 4 chunks +15 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/core/dom/NamedNodeMap.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Node.idl View 2 chunks +9 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ParentNode.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Range.idl View 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElement.h View 2 chunks +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElement.cpp View 1 2 chunks +11 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementsRegistry.cpp View 1 2 2 chunks +2 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementsRegistry.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp View 1 2 chunks +9 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/ShadowRoot.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/editing/Selection.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLAnchorElement.idl View 1 chunk +13 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLAreaElement.idl View 1 chunk +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLBRElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLBaseElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLBodyElement.idl View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLButtonElement.idl View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLCanvasElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLDListElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLDetailsElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLDialogElement.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLDirectoryElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLDivElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLDocument.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLElement.idl View 2 chunks +12 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLEmbedElement.idl View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFieldSetElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFontElement.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormElement.idl View 2 chunks +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFrameElement.idl View 1 chunk +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFrameSetElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLHRElement.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLHeadingElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLHtmlElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLHyperlinkElementUtils.idl View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLIFrameElement.idl View 1 chunk +14 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLImageElement.idl View 1 chunk +17 lines, -17 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLInputElement.idl View 2 chunks +34 lines, -34 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLKeygenElement.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLLIElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLLabelElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLLegendElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLLinkElement.idl View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMapElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMediaElement.idl View 2 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMenuElement.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMenuItemElement.idl View 1 chunk +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMetaElement.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMeterElement.idl View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLModElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLOListElement.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLObjectElement.idl View 2 chunks +16 lines, -16 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLOptGroupElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLOptionElement.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLOptionsCollection.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLOutputElement.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLParagraphElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLParamElement.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLPreElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLProgressElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLQuoteElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLScriptElement.idl View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLSelectElement.idl View 1 chunk +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLSlotElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLSourceElement.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLStyleElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTableCaptionElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTableCellElement.idl View 1 chunk +14 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTableColElement.idl View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTableElement.idl View 1 chunk +21 lines, -21 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTableRowElement.idl View 1 chunk +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTableSectionElement.idl View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl View 1 chunk +15 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTitleElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTrackElement.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLUListElement.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLVideoElement.idl View 1 chunk +3 lines, -3 lines 0 comments Download

Messages

Total messages: 22 (8 generated)
kojii
PTAL. dominicc: core haraken: binding
4 years, 6 months ago (2016-06-05 09:49:02 UTC) #3
bashi
I'd be great to add the link to the spec in the description. https://html.spec.whatwg.org/multipage/scripting.html#cereactions Also ...
4 years, 6 months ago (2016-06-05 23:17:38 UTC) #5
dominicc (has gone to gerrit)
core/dom LGTM
4 years, 6 months ago (2016-06-06 01:43:34 UTC) #6
Yuki
Do you have any plan to support setters and deleters in addition to operations and ...
4 years, 6 months ago (2016-06-06 06:13:57 UTC) #9
haraken
LGTM I think it's better to make an announcement to blink-dev, since this CL adds ...
4 years, 6 months ago (2016-06-07 07:43:54 UTC) #10
kojii
On 2016/06/07 at 07:43:54, haraken wrote: > I think it's better to make an announcement ...
4 years, 6 months ago (2016-06-07 07:49:16 UTC) #11
kojii
...and forgot to publish drafts, but bashi@ and yukishiino@ review results are done yesterday in ...
4 years, 6 months ago (2016-06-07 07:51:17 UTC) #12
bashi
lgtm
4 years, 6 months ago (2016-06-07 08:02:55 UTC) #13
Yuki
You may want some tests to confirm the behavior of [CEReactions], especially for {indexed,named} {setter,deleter}, ...
4 years, 6 months ago (2016-06-07 08:16:57 UTC) #14
kojii
Thank you for your prompt review, all done. https://codereview.chromium.org/2043503002/diff/40001/third_party/WebKit/Source/bindings/templates/attributes.cpp File third_party/WebKit/Source/bindings/templates/attributes.cpp (right): https://codereview.chromium.org/2043503002/diff/40001/third_party/WebKit/Source/bindings/templates/attributes.cpp#newcode394 third_party/WebKit/Source/bindings/templates/attributes.cpp:394: {% ...
4 years, 6 months ago (2016-06-07 09:56:36 UTC) #15
Yuki
lgtm
4 years, 6 months ago (2016-06-07 10:29:26 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2043503002/60001
4 years, 6 months ago (2016-06-07 17:02:47 UTC) #19
commit-bot: I haz the power
Committed patchset #4 (id:60001)
4 years, 6 months ago (2016-06-07 18:41:16 UTC) #20
commit-bot: I haz the power
4 years, 6 months ago (2016-06-07 18:42:34 UTC) #22
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/a509fa4b0fa1a34fe113a10ad9502fa58f6c7fef
Cr-Commit-Position: refs/heads/master@{#398352}

Powered by Google App Engine
This is Rietveld 408576698