mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-01 11:39:27 +00:00
15 lines
421 B
HTML
15 lines
421 B
HTML
<!doctype html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=742261
|
|
-->
|
|
<title>Test for Bug 742261</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
|
|
<body>
|
|
<script>
|
|
is(document.execCommandShowHelp, undefined,
|
|
"execCommandShowHelp shouldn't exist");
|
|
is(document.queryCommandText, undefined,
|
|
"queryCommandText shouldn't exist");
|
|
</script>
|