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

Add RefTest for ShadowTree/nested_shadow_tree #207

Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" >
<title>Shadow DOM Test Ref file - Tests nested shadow tree.</title>
<link rel="author" title="shingo.miyazawa" href="mailto:kumatronik@gmail.com" >
<script src="../../testcommon.js"></script>
<meta name="assert" content="nested shadow tree style is valid." >
<style>
#host {
width: 100px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<p>The test passes if there is a green square. Test failed if there is a red square.</p>
<div id='host'>
<div id="sub" style="width: 100%;height:100%;">
<div style="width:100%; height:100%;background-color: green;"></div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" >
<title>Shadow DOM Test - Tests nested shadow tree.</title>
<link rel="match" href="nested_tree_reftest-ref.html" >
<link rel="author" title="shingo.miyazawa" href="mailto:kumatronik@gmail.com" >
<link rel="help" href="https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html#nested-shadow-trees" >
<script src="../../testcommon.js"></script>
<meta name="assert" content="nested shadow tree style is valid." >
<style>
#host {
width: 100px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<p>The test passes if there is a green square. Test failed if there is a red square.</p>
<div id='host'>
</div>
<script>
var shadowRoot = createSR(document.getElementById('host'));
shadowRoot.innerHTML = '<div id="sub" style="width: 100%;height:100%;"></div>';
var nestedRoot = createSR(shadowRoot.getElementById('sub'));
nestedRoot.innerHTML = '<div style="width:100%; height:100%;background-color: green;"></div>';
</script>
</body>
</html>