We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd062f8 commit e22bde1Copy full SHA for e22bde1
src/test/java/net/sourceforge/htmlunit/DelegatorAndHostObjectTest.java
@@ -65,14 +65,6 @@ public void delegatorAsParameter() {
65
test("var t = new MyHostObject().createDelegator(); t.methodWithParam(t);", 123);
66
}
67
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
-
76
@Test
77
public void strictEquals() {
78
test("var o = new MyHostObject(); o.createDelegator() === o", true);
0 commit comments