Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The older tree is inserted into <shadow> #159

Merged
merged 1 commit into from
Jun 8, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>