Skip to content

Commit e22bde1

Browse files
committed
this is handled in HtmlUnit
1 parent fd062f8 commit e22bde1

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/test/java/net/sourceforge/htmlunit/DelegatorAndHostObjectTest.java

-8
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,6 @@ public void delegatorAsParameter() {
6565
test("var t = new MyHostObject().createDelegator(); t.methodWithParam(t);", 123);
6666
}
6767

68-
@Test
69-
public void delegatorAnd__defineGetter__() {
70-
final String script = "var t = new MyHostObject().createDelegator();\n"
71-
+ "t.__defineGetter__('foo', function(a) { return 'hello' });\n"
72-
+ "t.foo;";
73-
test(script, "hello");
74-
}
75-
7668
@Test
7769
public void strictEquals() {
7870
test("var o = new MyHostObject(); o.createDelegator() === o", true);

0 commit comments

Comments
 (0)