mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -08:00
JS: fix Element.tagName property (#545)
This commit is contained in:
parent
98f5c5da73
commit
14ca8ecdbb
|
@ -18,8 +18,6 @@ package org.teavm.jso.dom.xml;
|
||||||
import org.teavm.jso.JSProperty;
|
import org.teavm.jso.JSProperty;
|
||||||
|
|
||||||
public interface Element extends Node {
|
public interface Element extends Node {
|
||||||
String getTagName();
|
|
||||||
|
|
||||||
String getAttribute(String name);
|
String getAttribute(String name);
|
||||||
|
|
||||||
void setAttribute(String name, String value);
|
void setAttribute(String name, String value);
|
||||||
|
@ -59,4 +57,7 @@ public interface Element extends Node {
|
||||||
|
|
||||||
@JSProperty
|
@JSProperty
|
||||||
void setId(String id);
|
void setId(String id);
|
||||||
|
|
||||||
|
@JSProperty
|
||||||
|
String getTagName();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user