--- a/implementation.html Thu Aug 11 14:24:30 2011 -0600
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +0,0 @@
-<!doctype html>
-<title>execCommand() experimental implementation</title>
-<p><label>Command: <input></label>
- <label>Value: <input></label>
-<script>
-var command = document.querySelector("input");
-var val = document.querySelectorAll("input")[1];
-</script>
-<p>Spec:
-<button tabindex=-1 accesskey=a onclick='myExecCommand(command.value, null, val.value)'>exec</button>
-<button tabindex=-1 accesskey=s onclick='var ret = myQueryCommandState(command.value); alert(typeof ret + " \"" + ret + "\"")'>state</button>
-<button tabindex=-1 accesskey=d onclick='var ret = myQueryCommandValue(command.value); alert(typeof ret + " \"" + ret + "\"")'>value</button>
-<p>Actual:
-<button tabindex=-1 accesskey=z onclick='execCommand(command.value, null, val.value)'>exec</button>
-<button tabindex=-1 accesskey=x onclick='var ret = queryCommandState(command.value); alert(typeof ret + " \"" + ret + "\"")'>state</button>
-<button tabindex=-1 accesskey=c onclick='var ret = queryCommandValue(command.value); alert(typeof ret + " \"" + ret + "\"")'>value</button>
-<p>Spec convenience links:
-<button tabindex=-1 accesskey=b onclick='myExecCommand("bold", null, "")'><b>B</b></button>
-<button tabindex=-1 accesskey=i onclick='myExecCommand("italic", null, "")'><i>I</i></button>
-<button tabindex=-1 accesskey=u onclick='myExecCommand("underline", null, "")'><u>U</u></button>
-<div contenteditable=true>
- Abcdef
-</div>
-<script src=implementation.js></script>