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

Unified Diff: LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-area-expected.html

Issue 610683002: Revert of Support for :enabled selector on Anchor & Area elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/pseudoclass-update-enabled-area-expected.html
diff --git a/LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-area-expected.html b/LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-area-expected.html
deleted file mode 100644
index 645368f30bc266b935ebe03adcf04c88b7c054fb..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-area-expected.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<style>
-area {
- display: inline;
-}
-</style>
-<p>When an anchor tag catch 'href' attribute or release 'href' attribute, distribution should happen.</p>
-<div id="host1"></div>
-<div id="host2"></div>
-<script>
-function createArea(href, textContent)
-{
- var area = document.createElement('area');
- if (href)
- area.setAttribute('href', href);
- area.appendChild(document.createTextNode(textContent));
-
- return area;
-}
-
-var area1 = createArea('http://www.example.com/', 'Anchor 1');
-var area4 = createArea('http://www.example.com/', 'Anchor 4');
-
-host1.appendChild(area1);
-host2.appendChild(area4);
-</script>
« no previous file with comments | « LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-area.html ('k') | Source/core/css/SelectorChecker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698