Skip to content

Commit

Permalink
Merge pull request #164 from Hiroyou/submissions/hiroyou-3
Browse files Browse the repository at this point in the history
<shadow> should insert original tree's node
  • Loading branch information
hayatoito committed Jun 8, 2013
2 parents 6eec68d + 22873e6 commit 3bfa890
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
15 changes: 15 additions & 0 deletions shadow-dom/shadow-trees/hosting-multiple-shadow-trees-003-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Shadow DOM - The shadow should insert original tree's node if no older shadow tree exists.</title>
<link rel="author" title="Hiroyuki Hayashi" href="mailto:hyshhryk@gmail.com">
</head>
<body>
<div>
<p>Younger tree's node</p>
<p>Older tree's node</p>
<p>Original tree's node</p>
</div>
</body>
</html>
23 changes: 23 additions & 0 deletions shadow-dom/shadow-trees/hosting-multiple-shadow-trees-003.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Shadow DOM Test - Tests shadow should insert original tree's node if no older shadow tree exists.</title>
<link rel="reference" href="hosting-multiple-shadow-trees-003-ref.html">
<link rel="author" title="Hiroyuki Hayashi" href="mailto:hyshhryk@gmail.com">
<link rel="help" href="http://www.w3.org/TR/shadow-dom/#multiple-shadow-trees">
<script src="../testcommon.js"></script>
<meta name="assert" content="The <shadow> should insert original tree's node if no older shadow tree exists.">
</head>
<body>
<div id='host'>
<p>Original tree's node</p>
</div>
<script>
var shadowRoot = createSR(host);
shadowRoot.innerHTML = "<div><p>Older tree's node</p><shadow></shadow></div>";
var shadowRoot = createSR(host);
shadowRoot.innerHTML = "<div><p>Younger tree's node</p><shadow></shadow></div>";
</script>
</body>
</html>

0 comments on commit 3bfa890

Please sign in to comment.