Skip to content

Commit a3f3b5f

Browse files
committed
tests: add a test for property binding case insensitivity
1 parent d0013a0 commit a3f3b5f

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

processors/src/test/resources/propertybinding/PropertyBindingComponent.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
<input type="text" :required="true"/>
33
<div :id='"MyID"'></div>
44
<input :max-length='10' :non-existing-property="15"/>
5+
<TEXTArea :AUtoFOCUS="false"/>
56
</div>

processors/src/test/resources/propertybinding/compileresult/PropertyBindingComponentExposedType.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,11 @@ public class PropertyBindingComponentExposedType extends PropertyBindingComponen
3838
// PropertyBindingComponent.html, line 4
3939
return Js.asAny(15);
4040
}
41+
42+
@JsMethod
43+
@SuppressWarnings("unusable-by-js")
44+
public boolean exp$4() {
45+
// PropertyBindingComponent.html, line 5
46+
return (boolean) (false);
47+
}
4148
}

0 commit comments

Comments
 (0)