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

Unified Diff: LayoutTests/fast/dom/MicroData/itemvalue-returns-null.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
Index: LayoutTests/fast/dom/MicroData/itemvalue-returns-null.html
diff --git a/LayoutTests/fast/dom/MicroData/itemvalue-returns-null.html b/LayoutTests/fast/dom/MicroData/itemvalue-returns-null.html
deleted file mode 100644
index 1dd06a8408c8369cda3bd1c5d15ef5c70f58545d..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/MicroData/itemvalue-returns-null.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../js/resources/js-test-pre.js"></script>
-<script src="resources/microdata-common.js"></script>
-</head>
-<body>
-<p>This tests that itemValue must be null if the element does not have an itemprop attribute</p>
-<div id="console"></div>
-<script>
-shouldBeTrue("createElement('meta', {content: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('audio', {src: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('embed', {src: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('iframe', {src: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('img', {src: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('source', {src: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('track', {src: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('video', {src: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('a', {href: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('area', {href: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('link', {href: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('object', {data: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('time', {}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('time', {datetime: 'test'}).itemValue == null");
-debug('');
-shouldBeTrue("createElement('div', {}, 'test').itemValue == null");
-debug('');
-shouldBeTrue("createElement('madeuponthespot', {}, 'test').itemValue == null");
-
-</script>
-<script src="../../js/resources/js-test-post.js"></script>
-</body>
-</html

Powered by Google App Engine
This is Rietveld 408576698