summaryrefslogtreecommitdiffstats
path: root/gfx/tests/reftest/1792527-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/tests/reftest/1792527-1.html')
-rw-r--r--gfx/tests/reftest/1792527-1.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/gfx/tests/reftest/1792527-1.html b/gfx/tests/reftest/1792527-1.html
new file mode 100644
index 0000000000..15cd8492d9
--- /dev/null
+++ b/gfx/tests/reftest/1792527-1.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+.crisp-edges {
+ image-rendering: crisp-edges;
+}
+
+.pixelated {
+ image-rendering: pixelated;
+}
+
+.smooth {
+ image-rendering: smooth;
+}
+</style>
+</head>
+<body>
+<img class="crisp-edges" src="dino.png" width="32" height="32">
+<img class="pixelated" src="dino.png" width="32" height="32">
+<img class="smooth" src="dino.png" width="32" height="32">
+</body>
+</html>