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

Unified Diff: LayoutTests/fast/dom/HTMLImageElement/image-picture-source-src.html

Issue 466353002: Added a console warning when <picture><source src></picture> is used. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added use counter Created 6 years, 4 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/HTMLImageElement/image-picture-source-src.html
diff --git a/LayoutTests/fast/dom/HTMLImageElement/image-picture-source-src.html b/LayoutTests/fast/dom/HTMLImageElement/image-picture-source-src.html
new file mode 100644
index 0000000000000000000000000000000000000000..e35cfa98b46ed9462591c60f9a3c65a9d4bc7023
--- /dev/null
+++ b/LayoutTests/fast/dom/HTMLImageElement/image-picture-source-src.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<picture>
+ <source src srcset>
+ <img>
+</picture>
+<picture>
+ <source src>
+ <img>
+</picture>
+<picture>
+ <source>
+ <img>
+</picture>

Powered by Google App Engine
This is Rietveld 408576698