summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ui-valid/input/input-customerror.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-ui-valid/input/input-customerror.html')
-rw-r--r--layout/reftests/css-ui-valid/input/input-customerror.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/css-ui-valid/input/input-customerror.html b/layout/reftests/css-ui-valid/input/input-customerror.html
new file mode 100644
index 0000000000..394b141473
--- /dev/null
+++ b/layout/reftests/css-ui-valid/input/input-customerror.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <head>
+ <script>
+ function doTest() {
+ document.getElementById('t').setCustomValidity('foo');
+ document.documentElement.className='';
+ }
+ document.addEventListener("MozReftestInvalidate", doTest);
+ </script>
+ </head>
+ <!-- Test: if input has a custom error, it should not be affected by :-moz-ui-valid
+ pseudo-class. -->
+ <link rel='stylesheet' type='text/css' href='style.css'>
+ <body>
+ <input class='notvalid' id='t'>
+ </body>
+</html>