Index: LayoutTests/fast/dom/HTMLAppletElement/hspace-vspace.html |
diff --git a/LayoutTests/fast/dom/HTMLAppletElement/hspace-vspace.html b/LayoutTests/fast/dom/HTMLAppletElement/hspace-vspace.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ef7334b950c3870e4d01d18ae67745b1c2b2394e |
--- /dev/null |
+++ b/LayoutTests/fast/dom/HTMLAppletElement/hspace-vspace.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>HTMLAppletElement.hspace/vspace</title> |
+ <script src="../../../resources/testharness.js"></script> |
+ <script src="../../../resources/testharnessreport.js"></script> |
+ <script src="../script-tests/unsigned-long-attribute-reflection.js"></script> |
+ <script> |
+ function createApplet() { return document.createElement("applet"); } |
+ testUnsignedLong("HTMLAppletElement", createApplet, "hspace"); |
+ testUnsignedLong("HTMLAppletElement", createApplet, "vspace"); |
+ </script> |
+ </head> |
+ <body> |
+ <div id="log"></div> |
+ </body> |
+</html> |