| 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
|
| index 3a5ef971e0d2768d91fa5195b3611cd85d1e4adf..4a1000a4dd17d10378a70d98b1bb8144ee32ac5c 100644
|
| --- a/third_party/WebKit/LayoutTests/plugins/simple-expando.html
|
| +++ b/third_party/WebKit/LayoutTests/plugins/simple-expando.html
|
| @@ -2,10 +2,16 @@
|
| <html>
|
| <script src="../resources/testharness.js"></script>
|
| <script src="../resources/testharnessreport.js"></script>
|
| +<body>
|
| <script>
|
| test(function() {
|
| var obj = document.createElement("object");
|
| + obj.type = "application/x-blink-deprecated-test-plugin";
|
| + document.body.appendChild(obj);
|
| obj.foo = 1;
|
| assert_equals(obj.foo, 1, "Setting an expando on an <object> works");
|
| + obj.foo = 2;
|
| + assert_equals(obj.foo, 2, "Repeatedly setting an expando on an <object> works");
|
| }, "setting an expando");
|
| </script>
|
| +</body>
|
|
|