Skip to content

Commit

Permalink
Merge pull request #159 from Hiroyou/submissions/hiroyou-2
Browse files Browse the repository at this point in the history
The older tree is inserted into <shadow>
  • Loading branch information
hayatoito committed Jun 8, 2013
2 parents 09989ff + 7cf47c0 commit 37fe22a
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-002-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 older tree is inserted into shadow, and the original branch is inserted into content.</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-002.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 inserts older tree.</title>
<link rel="reference" href="hosting-multiple-shadow-trees-002-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 older tree is inserted into <shadow>, and the original branch is inserted into <content>." />
</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><content></content></div>";
var shadowRoot = createSR(host);
shadowRoot.innerHTML = "<div><p>Younger tree's node</p><shadow></shadow></div>";
</script>
</body>
</html>

0 comments on commit 37fe22a

Please sign in to comment.