Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(655)

Unified Diff: LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html

Issue 212123002: Unship '::-webkit-distributed(...)' functional pseudo element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html
diff --git a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html b/LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html
deleted file mode 100644
index 1efb4f84902d738ae029b720908ebe43f450501b..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!doctype html>
-<html>
-<head>
-<style>
- ::-webkit-distributed(h1) {
- border: 1px solid currentcolor;
- }
- h1 {
- color: red;
- }
-</style>
-
-<template>
- <content select="#second"></content>
-</template>
-
-<script>
-function runTest() {
- var host = document.querySelector('#shadowhost');
- var shadow = host.createShadowRoot();
- shadow.innerHTML = document.querySelector('template').innerHTML;
-}
-</script>
-</head>
-<body onload="runTest()">
-<div id='shadowhost'>
- <h1 id='first'>First element</h1>
- <h1 id='second'>I should be red without a border</h1>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698