Commit b3f02178 authored by Takayoshi Kochi's avatar Takayoshi Kochi Committed by Commit Bot

Remove layout tests that depend on multiple shadow roots

They happened to pass because they are ref tests and they
expected no change after adding multiple shadow root
(with <shadow> inside author shadow, etc.).

Bug: 788635
Change-Id: I514a66fe1c0dbcd2ea724d60c4a392ddef34f92e
Reviewed-on: https://chromium-review.googlesource.com/826327Reviewed-by: default avatarHayato Ito <hayato@chromium.org>
Commit-Queue: Takayoshi Kochi <kochi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#524294}
parent 5735cf1d
...@@ -742,9 +742,6 @@ crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/remove-details-i ...@@ -742,9 +742,6 @@ crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/remove-details-i
crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/shadow-contents-event.html [ Failure Crash ] crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/shadow-contents-event.html [ Failure Crash ]
crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/shadow-contents-select.html [ Failure Crash ] crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/shadow-contents-select.html [ Failure Crash ]
crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/shadow-dom-event-dispatching-details-summary.html [ Failure Crash ] crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/shadow-dom-event-dispatching-details-summary.html [ Failure Crash ]
crbug.com/788635 virtual/incremental-shadow-dom/fast/dom/shadow/shadowdom-for-textarea-only-shadow.html [ Failure Crash ]
crbug.com/788635 virtual/incremental-shadow-dom/fast/dom/shadow/shadowdom-for-textarea-with-attribute.html [ Failure Crash ]
crbug.com/788635 virtual/incremental-shadow-dom/fast/dom/shadow/shadowdom-for-textarea-with-style.html [ Failure Crash ]
crbug.com/788635 virtual/incremental-shadow-dom/fast/dom/shadow/tree-scope-crash.html [ Failure Crash ] crbug.com/788635 virtual/incremental-shadow-dom/fast/dom/shadow/tree-scope-crash.html [ Failure Crash ]
crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/user-modify-in-datalist-crash.html [ Failure Crash ] crbug.com/788610 virtual/incremental-shadow-dom/fast/dom/shadow/user-modify-in-datalist-crash.html [ Failure Crash ]
crbug.com/776656 virtual/incremental-shadow-dom/fast/dom/shadow/user-modify-inheritance.html [ Failure ] crbug.com/776656 virtual/incremental-shadow-dom/fast/dom/shadow/user-modify-inheritance.html [ Failure ]
......
<!DOCTYPE html>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<textarea>Something in the air</textarea>
</form>
<!DOCTYPE html>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<textarea id="host">Something in the air</textarea>
</form>
<script>
var shadowRoot = host.createShadowRoot();
shadowRoot.appendChild(document.createElement('shadow'));
</script>
<!DOCTYPE html>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<textarea rows="8" cols="20">Something in the air</textarea>
</form>
<!DOCTYPE html>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<textarea id="host" rows="8" cols="20">Something in the air</textarea>
</form>
<script>
var shadowRoot = host.createShadowRoot();
shadowRoot.appendChild(document.createElement('shadow'));
</script>
<!DOCTYPE html>
<html>
<head>
textarea {
margin: 10px;
border: 2px dashed black;
padding: 10px;
}
</head>
<body>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<textarea>Something in the air</textarea>
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
textarea {
margin: 10px;
border: 2px dashed black;
padding: 10px;
}
</head>
<body>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<textarea id="host">Something in the air</textarea>
</form>
<script>
var shadowRoot = host.createShadowRoot();
shadowRoot.appendChild(document.createElement('shadow'));
</script>
</body>
</html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment