Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
REGRESSION(r109191): Shadow DOM tests stopped running on ports that d…
…o not have SHADOW_DOM flag enabled.

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

Reviewed by Ryosuke Niwa.

* fast/dom/shadow/resources/create-dom.js:
(createDOM): Fixed a typo.

Canonical link: https://commits.webkit.org/97598@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@109967 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
dglazkov committed Mar 6, 2012
1 parent 567ba53 commit 9156cd6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
2012-03-06 Dimitri Glazkov <dglazkov@chromium.org>

REGRESSION(r109191): Shadow DOM tests stopped running on ports that do not have SHADOW_DOM flag enabled.
https://bugs.webkit.org/show_bug.cgi?id=80449

Reviewed by Ryosuke Niwa.

* fast/dom/shadow/resources/create-dom.js:
(createDOM): Fixed a typo.

2012-03-06 Stephen White <senorblanco@chromium.org>

[chromium] Unreviewed gardening.
Expand Down
2 changes: 1 addition & 1 deletion LayoutTests/fast/dom/shadow/resources/create-dom.js
Expand Up @@ -18,7 +18,7 @@ function createDOM(tagName, attributes)
if (window.WebKitShadowRoot)
shadowRoot = new WebKitShadowRoot(element);
else
shadowRoot = new internals.ensureShadowRoot(element);
shadowRoot = internals.ensureShadowRoot(element);
for (var j = 0; j < child.children.length; ++j)
shadowRoot.appendChild(child.children[j]);
} else
Expand Down

0 comments on commit 9156cd6

Please sign in to comment.