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

Unified Diff: LayoutTests/fast/dom/MicroData/009.html

Issue 14028014: Remove MicroData implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Also delete all the tests Created 7 years, 8 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
« no previous file with comments | « LayoutTests/fast/dom/MicroData/008-expected.txt ('k') | LayoutTests/fast/dom/MicroData/009-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/MicroData/009.html
diff --git a/LayoutTests/fast/dom/MicroData/009.html b/LayoutTests/fast/dom/MicroData/009.html
deleted file mode 100644
index fa1b8152838e03329f93f789a6fb0590695b598a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/MicroData/009.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../js/resources/js-test-pre.js"></script>
-</head>
-<body>
-<p>This test ensures that document.getItems must not contain the items that have the itemprop attribute set.
-It must return a NodeList containing the top-level microdata items in the document.</p>
-
-<div itemscope itemtype="http://example.com/foo" id="one"></div>
-<div itemscope itemtype="http://example.com/bar" id="two"></div>
-
-<div itemscope>
-<p>Name: <span itemprop="name">Amanda</span></p>
-<p>Band: <span itemprop="band" itemscope> <span itemprop="name">Jazz Band</span> (<span itemprop="size">12</span> players)</span></p>
-</div>
-
-<div itemscope itemtype="http://example.com/foo" id="three">
-<div itemscope itemtype="http://example.com/f1" id="four"></div>
-</div>
-<div itemscope id="five"></div>
-<div id="console"></div>
-<script>
-shouldBeTrue("document.getItems().length == 6");
-
-document.getElementById('one').setAttribute('itemprop', 'test');
-document.getElementById('five').setAttribute('itemprop', 'test');
-shouldBeTrue("document.getItems().length == 4");
-
-document.getElementById('five').removeAttribute('itemprop');
-shouldBeTrue("document.getItems().length == 5");
-</script>
-
-<script src="../../js/resources/js-test-post.js"></script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/fast/dom/MicroData/008-expected.txt ('k') | LayoutTests/fast/dom/MicroData/009-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698