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

Issue 23886003: Have HTMLElements / SVGElements constructors take a Document reference in argument (Closed)

Created:
7 years, 3 months ago by do-not-use
Modified:
7 years, 3 months ago
CC:
blink-reviews, shans, webcomponents-bugzilla_chromium.org, eae+blinkwatch, dominicc+watchlist_chromium.org, adamk+blink_chromium.org, pdr, Steve Block, dino_apple.com, Nils Barth (inactive), Nate Chapin, alancutter (OOO until 2018), dstockwell, Timothy Loh, abarth-chromium, marja+watch_chromium.org, dglazkov+blink, Eric Willigers, kenneth.christiansen, nessy, rjwright, feature-media-reviews_chromium.org, darktears, kojih, vcarbune.chromium, gavinp+prerender_chromium.org, jsbell+bindings_chromium.org, Mike Lawther (Google), f(malita), groby+blinkspell_chromium.org, Stephen Chennney
Visibility:
Public.

Description

Have HTMLElements / SVGElements constructors take a Document reference in argument Have HTMLElements / SVGElements constructors take a Document reference in argument instead of a pointer as it can never be NULL. Most callers already have a document reference so this change avoids having to convert them into pointers. BUG=281400 R=haraken@chromium.org, tkent@chromium.org Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=157125

Patch Set 1 #

Total comments: 1

Patch Set 2 : Fix tests build #

Total comments: 2

Patch Set 3 : Android build fix #

Patch Set 4 : Another Android build fix #

Patch Set 5 : Another Android build fix #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1111 lines, -1107 lines) Patch
M Source/bindings/scripts/deprecated_code_generator_v8.pm View 2 chunks +2 lines, -1 line 0 comments Download
M Source/bindings/tests/results/V8TestNamedConstructor.cpp View 2 chunks +2 lines, -1 line 0 comments Download
M Source/bindings/v8/custom/V8HTMLImageElementConstructor.cpp View 2 chunks +2 lines, -1 line 0 comments Download
M Source/core/dom/CustomElementRegistrationContext.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/CustomElementRegistrationContext.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
M Source/core/dom/Document.cpp View 1 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/dom/shadow/InsertionPoint.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/shadow/InsertionPoint.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/CreateLinkCommand.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/EditorCommand.cpp View 2 chunks +4 lines, -2 lines 0 comments Download
M Source/core/editing/UnlinkCommand.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/htmlediting.cpp View 1 2 chunks +6 lines, -6 lines 0 comments Download
M Source/core/editing/markup.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/markup.cpp View 3 chunks +7 lines, -6 lines 0 comments Download
M Source/core/html/BaseChooserOnlyDateAndTimeInputType.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/BaseMultipleFieldsDateAndTimeInputType.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/ColorInputType.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/FileInputType.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLAnchorElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLAnchorElement.cpp View 1 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLAppletElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLAppletElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLAreaElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLAreaElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLAudioElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLAudioElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLBDIElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLBRElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLBRElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLBaseElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLBaseElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLBaseFontElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLBaseFontElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLBodyElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLBodyElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLButtonElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLButtonElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLCanvasElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLCanvasElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLDListElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLDListElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLDataListElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLDataListElement.cpp View 1 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLDetailsElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLDetailsElement.cpp View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/HTMLDialogElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLDialogElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLDirectoryElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLDirectoryElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLDivElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLDivElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLElement.h View 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/HTMLElement.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLEmbedElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLEmbedElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLFieldSetElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLFieldSetElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLFontElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLFontElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLFormControlElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFormControlElement.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFormControlElementWithState.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFormControlElementWithState.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFormElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLFormElement.cpp View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/HTMLFrameElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLFrameElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLFrameElementBase.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFrameElementBase.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFrameOwnerElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFrameOwnerElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFrameSetElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLFrameSetElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLHRElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLHRElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLHeadElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLHeadElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLHeadingElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLHeadingElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLHtmlElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLHtmlElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLIFrameElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLIFrameElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLImageElement.h View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/HTMLImageElement.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/HTMLInputElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLInputElement.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLKeygenElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLKeygenElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLLIElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLLIElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLLabelElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLLabelElement.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLLegendElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLLegendElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLLinkElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLLinkElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLMapElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLMapElement.cpp View 1 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLMarqueeElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLMarqueeElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLMediaElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLMediaElement.cpp View 3 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/HTMLMenuElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLMenuElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLMetaElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLMetaElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLMeterElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLMeterElement.cpp View 3 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/HTMLModElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLModElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLOListElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLOListElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLObjectElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLObjectElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLOptGroupElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLOptGroupElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLOptionElement.h View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/HTMLOptionElement.cpp View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/HTMLOutputElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLOutputElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLParagraphElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLParagraphElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLParamElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLParamElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLPlugInElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLPlugInElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLPlugInImageElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLPlugInImageElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLPreElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLPreElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLProgressElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLProgressElement.cpp View 3 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/HTMLQuoteElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLQuoteElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLScriptElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLScriptElement.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLSelectElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLSelectElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLSourceElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLSourceElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLSpanElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLSpanElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLStyleElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLStyleElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLSummaryElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLSummaryElement.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/HTMLTableCaptionElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableCaptionElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableCellElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableCellElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableColElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableColElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLTableElement.cpp View 7 chunks +10 lines, -10 lines 0 comments Download
M Source/core/html/HTMLTablePartElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTableRowElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLTableRowElement.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/HTMLTableSectionElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableSectionElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLTemplateElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTemplateElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTextAreaElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTextAreaElement.cpp View 4 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/HTMLTextFormControlElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTextFormControlElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTitleElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTitleElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTrackElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTrackElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLUListElement.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLUListElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLUnknownElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLVideoElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLVideoElement.cpp View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/html/HTMLViewSourceDocument.cpp View 6 chunks +12 lines, -12 lines 0 comments Download
M Source/core/html/ImageDocument.cpp View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/html/InputType.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/LabelableElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/LabelableElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/MediaDocument.cpp View 2 chunks +7 lines, -6 lines 0 comments Download
M Source/core/html/PasswordInputType.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/PluginDocument.cpp View 2 chunks +4 lines, -3 lines 0 comments Download
M Source/core/html/RangeInputType.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/SearchInputType.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/TextFieldInputType.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/parser/HTMLConstructionSite.cpp View 2 chunks +3 lines, -2 lines 0 comments Download
M Source/core/html/shadow/ClearButtonElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/ClearButtonElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/DateTimeEditElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/DateTimeEditElement.cpp View 16 chunks +18 lines, -18 lines 0 comments Download
M Source/core/html/shadow/DateTimeFieldElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/shadow/DateTimeFieldElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/shadow/DateTimeFieldElements.h View 14 chunks +27 lines, -27 lines 0 comments Download
M Source/core/html/shadow/DateTimeFieldElements.cpp View 15 chunks +27 lines, -27 lines 0 comments Download
M Source/core/html/shadow/DateTimeNumericFieldElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/shadow/DateTimeNumericFieldElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/shadow/DateTimeSymbolicFieldElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/shadow/DateTimeSymbolicFieldElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/shadow/DetailsMarkerControl.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/shadow/DetailsMarkerControl.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/shadow/HTMLContentElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/shadow/HTMLContentElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/shadow/HTMLShadowElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/HTMLShadowElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/MediaControlElementTypes.h View 5 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/shadow/MediaControlElementTypes.cpp View 5 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/shadow/MediaControlElements.h View 16 chunks +28 lines, -28 lines 0 comments Download
M Source/core/html/shadow/MediaControlElements.cpp View 15 chunks +28 lines, -28 lines 0 comments Download
M Source/core/html/shadow/MediaControls.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/MediaControls.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/MediaControlsChromium.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/shadow/MediaControlsChromium.cpp View 4 chunks +6 lines, -6 lines 0 comments Download
M Source/core/html/shadow/MediaControlsChromiumAndroid.h View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/MediaControlsChromiumAndroid.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/html/shadow/MeterShadowElement.h View 2 chunks +7 lines, -7 lines 0 comments Download
M Source/core/html/shadow/MeterShadowElement.cpp View 3 chunks +7 lines, -7 lines 0 comments Download
M Source/core/html/shadow/PasswordGeneratorButtonElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/PasswordGeneratorButtonElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/shadow/PickerIndicatorElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/PickerIndicatorElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/ProgressShadowElement.h View 2 chunks +10 lines, -10 lines 0 comments Download
M Source/core/html/shadow/ProgressShadowElement.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/shadow/SliderThumbElement.h View 4 chunks +5 lines, -5 lines 0 comments Download
M Source/core/html/shadow/SliderThumbElement.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/shadow/SpinButtonElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/SpinButtonElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/TextControlInnerElements.h View 5 chunks +12 lines, -12 lines 0 comments Download
M Source/core/html/shadow/TextControlInnerElements.cpp View 7 chunks +12 lines, -12 lines 0 comments Download
M Source/core/html/track/TextTrackCue.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/track/TextTrackCue.cpp View 3 chunks +4 lines, -3 lines 0 comments Download
M Source/core/html/track/TextTrackCueGeneric.cpp View 3 chunks +5 lines, -4 lines 0 comments Download
M Source/core/page/DragController.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/page/ImageBitmapTest.cpp View 1 4 chunks +7 lines, -7 lines 0 comments Download
M Source/core/scripts/make_names.pl View 6 chunks +8 lines, -8 lines 0 comments Download
M Source/core/svg/SVGAElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAElement.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAltGlyphDefElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAltGlyphDefElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAltGlyphElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAltGlyphElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAltGlyphItemElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAltGlyphItemElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimateColorElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimateColorElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimateElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimateElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimateMotionElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimateMotionElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimateTransformElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimateTransformElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGAnimationElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimationElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGCircleElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGCircleElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGClipPathElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGClipPathElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGComponentTransferFunctionElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGComponentTransferFunctionElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGCursorElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGCursorElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGDefsElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGDefsElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGDescElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGDescElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGElement.h View 2 chunks +1 line, -2 lines 0 comments Download
M Source/core/svg/SVGElement.cpp View 1 1 chunk +2 lines, -7 lines 0 comments Download
M Source/core/svg/SVGEllipseElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGEllipseElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEBlendElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEBlendElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEColorMatrixElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEColorMatrixElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEComponentTransferElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEComponentTransferElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFECompositeElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFECompositeElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEConvolveMatrixElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEConvolveMatrixElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEDiffuseLightingElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEDiffuseLightingElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEDisplacementMapElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEDisplacementMapElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEDistantLightElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEDistantLightElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEDropShadowElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEDropShadowElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFloodElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFloodElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFuncAElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFuncAElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFuncBElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFuncBElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFuncGElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFuncGElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFuncRElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEFuncRElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEGaussianBlurElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEGaussianBlurElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEImageElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEImageElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFELightElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFELightElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEMergeElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEMergeElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEMergeNodeElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEMergeNodeElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEMorphologyElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEMorphologyElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEOffsetElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEOffsetElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEPointLightElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFEPointLightElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFESpecularLightingElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFESpecularLightingElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFESpotLightElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFESpotLightElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFETileElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFETileElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFETurbulenceElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFETurbulenceElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFilterElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFilterElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFilterPrimitiveStandardAttributes.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFontElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGFontFaceElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceFormatElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceFormatElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceNameElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceNameElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceSrcElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceSrcElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceUriElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGFontFaceUriElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGForeignObjectElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGForeignObjectElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGGElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGGElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGGlyphElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGGlyphElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGGlyphRefElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGGlyphRefElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGGradientElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGGradientElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGGraphicsElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGGraphicsElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGHKernElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGHKernElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGImageElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGImageElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGLineElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGLineElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGLinearGradientElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGLinearGradientElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMPathElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMPathElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMarkerElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMarkerElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMaskElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMaskElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMetadataElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMetadataElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMissingGlyphElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGMissingGlyphElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPathElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPatternElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPatternElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPolyElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGPolyElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGPolygonElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPolygonElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPolylineElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGPolylineElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGRadialGradientElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGRadialGradientElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGRectElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGRectElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGSVGElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGSVGElement.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGScriptElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGScriptElement.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGSetElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGSetElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGStopElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGStopElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGStyleElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGStyleElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGSwitchElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGSwitchElement.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGSymbolElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGSymbolElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTRefElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTRefElement.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGTSpanElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTSpanElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTextContentElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTextContentElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTextElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTextElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTextPathElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTextPathElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTextPositioningElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTextPositioningElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTitleElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGTitleElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGUnknownElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGUnknownElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGUseElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGUseElement.cpp View 4 chunks +5 lines, -4 lines 0 comments Download
M Source/core/svg/SVGVKernElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGVKernElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGViewElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGViewElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/animation/SVGSMILElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/animation/SVGSMILElement.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/testing/Internals.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/testing/MockPagePopupDriver.cpp View 1 chunk +2 lines, -1 line 0 comments Download
M Source/core/xml/XSLTProcessor.cpp View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 8 (0 generated)
do-not-use
7 years, 3 months ago (2013-09-03 09:59:05 UTC) #1
kenneth.r.christiansen
https://codereview.chromium.org/23886003/diff/1/Source/core/html/HTMLMetaElement.cpp File Source/core/html/HTMLMetaElement.cpp (right): https://codereview.chromium.org/23886003/diff/1/Source/core/html/HTMLMetaElement.cpp#newcode33 Source/core/html/HTMLMetaElement.cpp:33: inline HTMLMetaElement::HTMLMetaElement(const QualifiedName& tagName, Document& document) This is great ...
7 years, 3 months ago (2013-09-03 10:01:55 UTC) #2
do-not-use
+haraken for bindings/
7 years, 3 months ago (2013-09-03 10:02:07 UTC) #3
tkent
lgtm Please fix Android build. https://codereview.chromium.org/23886003/diff/9001/Source/core/svg/SVGElement.h File Source/core/svg/SVGElement.h (left): https://codereview.chromium.org/23886003/diff/9001/Source/core/svg/SVGElement.h#oldcode51 Source/core/svg/SVGElement.h:51: static PassRefPtr<SVGElement> create(const QualifiedName&, ...
7 years, 3 months ago (2013-09-03 12:53:09 UTC) #4
do-not-use
Working on fixing the Android build. https://codereview.chromium.org/23886003/diff/9001/Source/core/svg/SVGElement.h File Source/core/svg/SVGElement.h (left): https://codereview.chromium.org/23886003/diff/9001/Source/core/svg/SVGElement.h#oldcode51 Source/core/svg/SVGElement.h:51: static PassRefPtr<SVGElement> create(const ...
7 years, 3 months ago (2013-09-03 12:59:41 UTC) #5
do-not-use
Could a bindings/ OWNER please take a look as well?
7 years, 3 months ago (2013-09-03 13:05:18 UTC) #6
haraken
LGTM for bindings/
7 years, 3 months ago (2013-09-03 14:32:25 UTC) #7
do-not-use
7 years, 3 months ago (2013-09-03 14:36:44 UTC) #8
Message was sent while issue was closed.
Committed patchset #5 manually as r157125 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698