summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-05-11 23:17:47 +0000
committerMoonchild <moonchild@palemoon.org>2020-05-20 13:49:55 +0000
commitd050188cd525b769d33e2a2d94454b32aaa0b622 (patch)
tree3b465a50e36d8ba482e72540e67e738b04585573 /testing/web-platform/tests
parent3a1bebfb87d994b810574fdfeba09683e80cd2c9 (diff)
downloadUXP-d050188cd525b769d33e2a2d94454b32aaa0b622.tar
UXP-d050188cd525b769d33e2a2d94454b32aaa0b622.tar.gz
UXP-d050188cd525b769d33e2a2d94454b32aaa0b622.tar.lz
UXP-d050188cd525b769d33e2a2d94454b32aaa0b622.tar.xz
UXP-d050188cd525b769d33e2a2d94454b32aaa0b622.zip
Issue #1543 - Align <img> with no src to the updated spec.
Diffstat (limited to 'testing/web-platform/tests')
-rw-r--r--testing/web-platform/tests/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/img-no-alt-replaced.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/img-no-alt-replaced.html b/testing/web-platform/tests/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/img-no-alt-replaced.html
new file mode 100644
index 000000000..78e630231
--- /dev/null
+++ b/testing/web-platform/tests/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/img-no-alt-replaced.html
@@ -0,0 +1,25 @@
+<!doctype html>
+<title>Images without alt attribute or with an empty alt attribute render as replaced elements regardless of src</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
+<link rel="author" href="https://mozilla.org" title="Mozilla">
+<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1196668">
+<style>
+ img {
+ width: 100px;
+ height: 150px;
+ }
+</style>
+<img>
+<img src="broken">
+<img alt="">
+<script>
+const t = async_test("Images without alt attribute or with an empty alt attribute render as replaced elements regardless of src");
+onload = t.step_func_done(function() {
+ for (const img of document.querySelectorAll("img")) {
+ assert_equals(img.offsetWidth, 100, `width: ${img.outerHTML}`);
+ assert_equals(img.offsetHeight, 150, `height: ${img.outerHTML}`);
+ }
+});
+</script>