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

Unified Diff: LayoutTests/fast/dom/MicroData/itemprop-for-an-element-must-be-correct-expected.txt

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
Index: LayoutTests/fast/dom/MicroData/itemprop-for-an-element-must-be-correct-expected.txt
diff --git a/LayoutTests/fast/dom/MicroData/itemprop-for-an-element-must-be-correct-expected.txt b/LayoutTests/fast/dom/MicroData/itemprop-for-an-element-must-be-correct-expected.txt
deleted file mode 100644
index abdf57fa5cc227142317567e888aafadcc0d5267..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/MicroData/itemprop-for-an-element-must-be-correct-expected.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-This test that the itemProp should be correct for an element that has itemProp attribute.
-
-Created element of type: div
-Set attribute: itemprop, value: foo bar FOO FOo
-PASS element.itemProp.length == 4 is true
-PASS element.itemProp.toString() == 'foo bar FOO FOo' is true
-PASS element.itemProp.item(0) == 'foo' is true
-PASS element.itemProp.item(1) == 'bar' is true
-PASS element.itemProp[0] == 'foo' is true
-PASS element.itemProp[1] == 'bar' is true
-PASS element.itemProp.contains('bar') is true
-
-itemProp should return case-sensitive strings.
-PASS element.itemProp.item(2) == 'FOO' is true
-PASS element.itemProp[2] == 'FOO' is true
-PASS element.itemProp.item(3) == 'FOo' is true
-FAIL element.itemProp[2] == 'FOo' should be true. Was false.
-
-itemProp should not contain an undefined token.
-PASS element.itemProp.contains('test') is false
-
-itemProp.length should be 0 if element doesn't have any tokens.
-Created element of type: div
-Set attribute: itemprop, value:
-PASS element1.itemProp.length == 0 is true
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698