1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-21 00:25:37 +00:00

[test] Page for element.style (getter)

This commit is contained in:
Witold Filipczyk 2023-09-19 17:30:06 +02:00
parent 0b7caf4e82
commit c7cf135844

View File

@ -0,0 +1,6 @@
<html>
<body>
<b id="test" style="color:red">RED</b>
<button onclick="alert(document.getElementById('test').style.color);">Click to see: red</button>
</body>
</html>