Index: LayoutTests/fast/events/touch/touch-action-double-remove.html |
diff --git a/LayoutTests/fast/events/touch/touch-action-double-remove.html b/LayoutTests/fast/events/touch/touch-action-double-remove.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ddfded9df5217eff7fc8d39d8cce90f566c1e796 |
--- /dev/null |
+++ b/LayoutTests/fast/events/touch/touch-action-double-remove.html |
@@ -0,0 +1,13 @@ |
+<!DOCTYPE html> |
+<script src="../../../resources/js-test.js"></script> |
+<style> |
+* { |
Rick Byers
2014/10/09 19:29:34
does this really need to be * (that's rare) or is
|
+ touch-action:none; |
+} |
+</style> |
+<script> |
+onload = function() { |
Rick Byers
2014/10/09 19:29:34
please add a description() - i.e. what exactly is
|
+ document.writeln('PASS'); |
+} |
+</script> |
+<source onerror="foo()"> |
Rick Byers
2014/10/09 19:29:34
I thought <source> was only valid inside of <pictu
|