Index: third_party/WebKit/LayoutTests/plugins/simple-expando.html |
diff --git a/third_party/WebKit/LayoutTests/plugins/simple-expando.html b/third_party/WebKit/LayoutTests/plugins/simple-expando.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3a5ef971e0d2768d91fa5195b3611cd85d1e4adf |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/plugins/simple-expando.html |
@@ -0,0 +1,11 @@ |
+<!DOCTYPE html> |
+<html> |
+<script src="../resources/testharness.js"></script> |
+<script src="../resources/testharnessreport.js"></script> |
+<script> |
+test(function() { |
+ var obj = document.createElement("object"); |
+ obj.foo = 1; |
+ assert_equals(obj.foo, 1, "Setting an expando on an <object> works"); |
+}, "setting an expando"); |
+</script> |