Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: third_party/WebKit/LayoutTests/plugins/simple-expando.html

Issue 2625643002: Don't try to correctly notify V8 from the plugin interceptor (Closed)
Patch Set: updates Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698