| Index: Source/web/tests/data/button.html
|
| diff --git a/Source/web/tests/data/button.html b/Source/web/tests/data/button.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..20aee889447718f0b26ceedb86575dce0c2c8118
|
| --- /dev/null
|
| +++ b/Source/web/tests/data/button.html
|
| @@ -0,0 +1,24 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<script>
|
| +function changeText(id, newText) {
|
| + var node = document.getElementById(id);
|
| + node.childNodes[0].nodeValue = newText;
|
| +}
|
| +</script>
|
| +
|
| + <meta name='viewport' content='width=device-width'/>
|
| + <style>
|
| + body {
|
| + margin: 0px;
|
| + }
|
| + </style>
|
| +</head>
|
| +
|
| +<body>
|
| + <button type="button" id="tap_button" onclick="changeText('tap_button', 'updatedValue')" style="width:100px;height:100px">oldValue</button>
|
| +</body>
|
| +
|
| +</html>
|
| +
|
|
|