Index: Source/web/tests/data/button.html |
diff --git a/Source/web/tests/data/button.html b/Source/web/tests/data/button.html |
deleted file mode 100644 |
index 20aee889447718f0b26ceedb86575dce0c2c8118..0000000000000000000000000000000000000000 |
--- a/Source/web/tests/data/button.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<!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> |
- |