18 lines
473 B
HTML
18 lines
473 B
HTML
<script type="application/json" id="selectors">
|
|
[{
|
|
"selector": "button:enabled",
|
|
"match": ["2"]
|
|
},
|
|
{
|
|
"selector": "input:enabled",
|
|
"match": ["3"]
|
|
}]
|
|
</script>
|
|
<div id="testDOM">
|
|
<p id="1">
|
|
<button id="2">A button (enabled) with green background</button>
|
|
<br>
|
|
<input id="3" type="text" size="36" value="a text area (enabled) with green background">
|
|
</p>
|
|
</div>
|