1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00
ladybird/Tests/LibWeb/Text/input/DOM/Text-set-get-data.html
2025-03-20 11:50:49 +01:00

10 lines
218 B
HTML

<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
const str = 'Next 🙃';
let text = new Text(str);
text.data = str;
println(text.data);
});
</script>