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

Issue 1511523002: Align HTMLImageElement relevant mutations to spec (Closed)

Created:
5 years ago by Yoav Weiss
Modified:
5 years ago
CC:
darktears, blink-reviews, blink-reviews-animation_chromium.org, blink-reviews-dom_chromium.org, blink-reviews-html_chromium.org, blink-reviews-style_chromium.org, blink-reviews-w3ctests_chromium.org, chromium-reviews, darin-cc_chromium.org, dglazkov+blink, krit, eae+blinkwatch, eric.carlson_apple.com, Eric Willigers, feature-media-reviews_chromium.org, f(malita), fs, gavinp+prerender_chromium.org, gasubic, gyuyoung2, jam, kouhei+svg_chromium.org, mlamouri+watch-blink_chromium.org, pdr+svgwatchlist_chromium.org, philipj_slow, rjwright, rwlbuis, Stephen Chennney, shans, sof, nessy, tfarina, vcarbune.chromium, webcomponents-bugzilla_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Align HTMLImageElement relevant mutations to spec This CL (almost) aligns the HTMLImageElement's implementation of relevant mutations with the spec [1] and ensures that the "update the image data" algorithm fires when it should, and that it doesn't fire when it shouldn't. Specific changes: * Avoid firing update when srcset and sizes are set to current value * Fire an update when an image is inserted into a <picture> * Fire a (null) update when an image is removed from a <picture> * Avoid firing update when a source that's after the <img> was removed, inserted or changed The part where this CL diverges from the spec is upon removal of an HTMLImageElement from an HTMLPictureElement parent. Instead of running a full "update the image data", we run it with a null "selected source" to avoid spurious downloads. See [2] for details. Compatibility: * Firefox agrees with the spec on all these points, so this change increases compat there. * The relevant mutations parts we change here are not yet implemented in WebKit. * Latest MS Edge seems to be failing most tests that this CL fixes. Test: Imported from https://github.com/w3c/web-platform-tests/blob/master/html/semantics/embedded-content/the-img-element/relevant-mutations.html [1] https://html.spec.whatwg.org/multipage/embedded-content.html#relevant-mutations [2] https://github.com/ResponsiveImagesCG/picture-element/issues/274 BUG=418903 Committed: https://crrev.com/cb0e14ed4b021eff0699175f0fe3ac222ae3978f Cr-Commit-Position: refs/heads/master@{#364307}

Patch Set 1 #

Total comments: 1

Patch Set 2 : nit fix #

Total comments: 4

Patch Set 3 : Removed fwd decleration #

Patch Set 4 : Added parameter names #

Total comments: 1

Patch Set 5 : Moved the test out of imported #

Patch Set 6 : Fix removal issue when a text node is between <source> and <img> #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+538 lines, -134 lines) Patch
A + third_party/WebKit/LayoutTests/fast/dom/HTMLImageElement/images/green-2x2.png View 1 2 3 4 Binary file 0 comments Download
A third_party/WebKit/LayoutTests/fast/dom/HTMLImageElement/relevant-mutations.html View 1 2 3 4 1 chunk +386 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ContainerNode.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ContainerNode.cpp View 1 6 chunks +9 lines, -8 lines 1 comment Download
M third_party/WebKit/Source/core/dom/DocumentType.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentType.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Element.h View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Element.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Node.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ProcessingInstruction.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/PseudoElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/InsertionPoint.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/FormAssociatedElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/FormAssociatedElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLBaseElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLBaseElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLDialogElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLDialogElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormControlElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormControlElementWithState.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormControlElementWithState.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLIFrameElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLImageElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLImageElement.cpp View 2 chunks +11 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLInputElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLInputElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLLabelElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLLabelElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLLinkElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLLinkElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMapElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMapElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMarqueeElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMarqueeElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMediaElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMediaElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLObjectElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLObjectElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLOptionElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLOptionElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLPictureElement.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLPictureElement.cpp View 1 2 3 4 5 2 chunks +13 lines, -3 lines 1 comment Download
M third_party/WebKit/Source/core/html/HTMLPlugInElement.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLSourceElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLSourceElement.cpp View 3 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLStyleElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLStyleElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTitleElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTitleElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTrackElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTrackElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGFEImageElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGMPathElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGMPathElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGPathElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGPathElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGSVGElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGSVGElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGStyleElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGStyleElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGTextPathElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGTextPathElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGTitleElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGTitleElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGUseElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGUseElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download

Messages

Total messages: 72 (35 generated)
Yoav Weiss
Hey! This is a long overdue alignment of HTMLImageElement with the relevant mutations part of ...
5 years ago (2015-12-08 09:45:27 UTC) #3
Yoav Weiss
On 2015/12/08 09:45:27, Yoav Weiss wrote: > Hey! > > This is a long overdue ...
5 years ago (2015-12-08 09:48:15 UTC) #4
Noel Gordon
On 2015/12/08 09:48:15, Yoav Weiss wrote: > On 2015/12/08 09:45:27, Yoav Weiss wrote: > > ...
5 years ago (2015-12-08 10:42:31 UTC) #5
Noel Gordon
Minor nit: after staring at the classes you listed in detail ... HTMLImageElement, HTMLSourceElement, HTMLPictureElement ...
5 years ago (2015-12-08 10:52:15 UTC) #8
Yoav Weiss
On 2015/12/08 10:52:15, noel gordon wrote: > Minor nit: after staring at the classes you ...
5 years ago (2015-12-08 10:58:42 UTC) #9
Noel Gordon
https://codereview.chromium.org/1511523002/diff/20001/third_party/WebKit/Source/core/html/HTMLPictureElement.h File third_party/WebKit/Source/core/html/HTMLPictureElement.h (right): https://codereview.chromium.org/1511523002/diff/20001/third_party/WebKit/Source/core/html/HTMLPictureElement.h#newcode13 third_party/WebKit/Source/core/html/HTMLPictureElement.h:13: Maybe not needed?
5 years ago (2015-12-08 11:20:13 UTC) #12
Noel Gordon
https://codereview.chromium.org/1511523002/diff/20001/third_party/WebKit/Source/core/html/HTMLPictureElement.h File third_party/WebKit/Source/core/html/HTMLPictureElement.h (right): https://codereview.chromium.org/1511523002/diff/20001/third_party/WebKit/Source/core/html/HTMLPictureElement.h#newcode13 third_party/WebKit/Source/core/html/HTMLPictureElement.h:13: On 2015/12/08 11:20:13, noel gordon wrote: > Maybe not ...
5 years ago (2015-12-08 11:46:07 UTC) #19
Noel Gordon
Bots seems unhappy: not sure it's due to this patch though.
5 years ago (2015-12-08 11:47:06 UTC) #21
Mike West
On 2015/12/08 at 11:47:06, noel wrote: > Bots seems unhappy: not sure it's due to ...
5 years ago (2015-12-08 11:59:54 UTC) #22
dstockwell
sorry, drive-by nits. https://codereview.chromium.org/1511523002/diff/20001/third_party/WebKit/Source/core/dom/ContainerNode.h File third_party/WebKit/Source/core/dom/ContainerNode.h (right): https://codereview.chromium.org/1511523002/diff/20001/third_party/WebKit/Source/core/dom/ContainerNode.h#newcode250 third_party/WebKit/Source/core/dom/ContainerNode.h:250: void notifyNodeRemoved(Node&, Node*); these need parameter ...
5 years ago (2015-12-08 12:02:37 UTC) #23
Yoav Weiss
On 2015/12/08 11:59:54, Mike West wrote: > On 2015/12/08 at 11:47:06, noel wrote: > > ...
5 years ago (2015-12-08 12:07:27 UTC) #24
Yoav Weiss
On 2015/12/08 12:02:37, dstockwell wrote: > sorry, drive-by nits. > > https://codereview.chromium.org/1511523002/diff/20001/third_party/WebKit/Source/core/dom/ContainerNode.h > File third_party/WebKit/Source/core/dom/ContainerNode.h ...
5 years ago (2015-12-08 13:13:21 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1511523002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1511523002/60001
5 years ago (2015-12-08 13:14:24 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/126390) linux_chromium_clobber_rel_ng on tryserver.chromium.linux (JOB_FAILED, ...
5 years ago (2015-12-08 13:35:10 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1511523002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1511523002/60001
5 years ago (2015-12-08 13:37:59 UTC) #36
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/139710)
5 years ago (2015-12-08 14:01:08 UTC) #38
tkent
https://codereview.chromium.org/1511523002/diff/60001/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/the-img-element/relevant-mutations.html File third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/the-img-element/relevant-mutations.html (right): https://codereview.chromium.org/1511523002/diff/60001/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/the-img-element/relevant-mutations.html#newcode1 third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/the-img-element/relevant-mutations.html:1: <!doctype html> It's not proper way to add a ...
5 years ago (2015-12-08 14:39:16 UTC) #40
Yoav Weiss
On 2015/12/08 14:39:16, tkent wrote: > https://codereview.chromium.org/1511523002/diff/60001/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/the-img-element/relevant-mutations.html > File > third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/the-img-element/relevant-mutations.html > (right): > > ...
5 years ago (2015-12-08 22:29:05 UTC) #41
Noel Gordon
On 2015/12/08 13:13:21, Yoav Weiss wrote: > Added parameter names Thanks. Let's cq-dry-run to see ...
5 years ago (2015-12-09 01:13:00 UTC) #42
tkent
On 2015/12/08 at 22:29:05, yoav wrote: > Hmm, that seems like an orthogonal issue... Would ...
5 years ago (2015-12-09 01:13:16 UTC) #44
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1511523002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1511523002/60001
5 years ago (2015-12-09 01:35:53 UTC) #46
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/146670)
5 years ago (2015-12-09 03:20:21 UTC) #48
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1511523002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1511523002/80001
5 years ago (2015-12-09 08:38:02 UTC) #50
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/152551)
5 years ago (2015-12-09 10:16:11 UTC) #52
Yoav Weiss
Test failures were a function of Node traversal skipping text nodes (so the sourceOrMdeiaChanged() missed ...
5 years ago (2015-12-09 21:58:16 UTC) #53
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1511523002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1511523002/100001
5 years ago (2015-12-09 23:16:23 UTC) #56
Noel Gordon
On 2015/12/09 21:58:16, Yoav Weiss wrote: > Test failures were a function of Node traversal ...
5 years ago (2015-12-09 23:30:13 UTC) #57
commit-bot: I haz the power
Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_android_rel_ng/builds/108042)
5 years ago (2015-12-09 23:42:34 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1511523002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1511523002/100001
5 years ago (2015-12-10 05:39:31 UTC) #61
commit-bot: I haz the power
Committed patchset #6 (id:100001)
5 years ago (2015-12-10 07:15:59 UTC) #63
commit-bot: I haz the power
Patchset 6 (id:??) landed as https://crrev.com/cb0e14ed4b021eff0699175f0fe3ac222ae3978f Cr-Commit-Position: refs/heads/master@{#364307}
5 years ago (2015-12-10 07:16:50 UTC) #65
Noel Gordon
ʕ•ᴥ•ʔ Happy Koala to you. cr-blink-image bugs -= 1;
5 years ago (2015-12-10 09:36:22 UTC) #66
Yoav Weiss
On 2015/12/10 09:36:22, noel gordon wrote: > ʕ•ᴥ•ʔ Happy Koala to you. cr-blink-image bugs -= ...
5 years ago (2015-12-10 10:32:53 UTC) #67
esprehn
Please revert the change that plumbs next through every removedFrom call. https://codereview.chromium.org/1511523002/diff/100001/third_party/WebKit/Source/core/dom/ContainerNode.cpp File third_party/WebKit/Source/core/dom/ContainerNode.cpp (right): ...
5 years ago (2015-12-14 22:49:42 UTC) #69
esprehn
https://codereview.chromium.org/1511523002/diff/100001/third_party/WebKit/Source/core/html/HTMLPictureElement.cpp File third_party/WebKit/Source/core/html/HTMLPictureElement.cpp (right): https://codereview.chromium.org/1511523002/diff/100001/third_party/WebKit/Source/core/html/HTMLPictureElement.cpp#newcode31 third_party/WebKit/Source/core/html/HTMLPictureElement.cpp:31: getChildNodes(*this, potentialSourceNodes); This copies every kid into a vector, ...
5 years ago (2015-12-14 22:52:42 UTC) #70
Yoav Weiss
On 2015/12/14 22:49:42, esprehn wrote: > Please revert the change that plumbs next through every ...
5 years ago (2015-12-14 22:59:57 UTC) #71
Yoav Weiss
5 years ago (2015-12-14 23:01:08 UTC) #72
Message was sent while issue was closed.
A revert of this CL (patchset #6 id:100001) has been created in
https://codereview.chromium.org/1522253002/ by yoav@yoav.ws.

The reason for reverting is: Reverting due to esprehn's request.

Powered by Google App Engine
This is Rietveld 408576698