[Webkit-unassigned] [Bug 77935] Disable adding a shadow root to elements having a dynamic built-in shadow root.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 9 00:22:30 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=77935





--- Comment #10 from Kent Tamura <tkent at chromium.org>  2012-02-09 00:22:30 PST ---
(From update of attachment 126245)
View in context: https://bugs.webkit.org/attachment.cgi?id=126245&action=review

> Source/WebCore/dom/Element.cpp:1202
> +    return ShadowRoot::create(this, ShadowRoot::CreatingUserAgentShadowRoot, ASSERT_NO_EXCEPTION).get();

You can remove ASSERT_NO_EXCEPTION argument.

> Source/WebCore/html/HTMLDetailsElement.cpp:113
> +    RefPtr<ShadowRoot> root = ShadowRoot::create(this, ShadowRoot::CreatingUserAgentShadowRoot, ASSERT_NO_EXCEPTION);

ditto.

> Source/WebCore/html/HTMLKeygenElement.cpp:89
> +    RefPtr<ShadowRoot> root = ShadowRoot::create(this, ShadowRoot::CreatingUserAgentShadowRoot, ASSERT_NO_EXCEPTION);

ditto.

> Source/WebCore/html/HTMLMeterElement.cpp:244
> +    RefPtr<ShadowRoot> root = ShadowRoot::create(this, ShadowRoot::CreatingUserAgentShadowRoot, ASSERT_NO_EXCEPTION);

ditto.

> Source/WebCore/html/HTMLSummaryElement.cpp:77
> +    RefPtr<ShadowRoot> root = ShadowRoot::create(this, ShadowRoot::CreatingUserAgentShadowRoot, ASSERT_NO_EXCEPTION);

ditto.

> Source/WebCore/html/HTMLTextAreaElement.cpp:88
> +    RefPtr<ShadowRoot> root = ShadowRoot::create(this, ShadowRoot::CreatingUserAgentShadowRoot, ASSERT_NO_EXCEPTION);

ditto.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list