mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
Issue #2106 - Follow-up: Additional Un-prefixing
This commit is contained in:
parent
f1f8c53ed6
commit
1a5b3dcae6
52 changed files with 152 additions and 152 deletions
|
|
@ -13,6 +13,6 @@
|
|||
<body onload="setTimeout(test, 0)">
|
||||
<div contenteditable spellcheck="false" onfocus="focused()"
|
||||
style="outline: none">foo<span contenteditable=false
|
||||
style="-moz-user-select: none">bar</span>baz</div>
|
||||
style="user-select: none">bar</span>baz</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
}
|
||||
</script>
|
||||
<style>
|
||||
div { -moz-user-select:none; }
|
||||
div { user-select:none; }
|
||||
div:focus { outline:1px solid black; }
|
||||
</style>
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
}
|
||||
</script>
|
||||
<style>
|
||||
div { -moz-user-select:none; }
|
||||
div { user-select:none; }
|
||||
div:focus { outline:1px solid black; }
|
||||
</style>
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html class="reftest-wait" style="-moz-user-select:none" spellcheck="false">
|
||||
<html class="reftest-wait" style="user-select:none" spellcheck="false">
|
||||
<head>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=968148
|
|||
width: 20px;
|
||||
height: 20px;
|
||||
border: 1px solid black;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@
|
|||
}
|
||||
html,body { margin:0; padding: 0; }
|
||||
body,pre { font-family: Ahem; font-size: 20px; }
|
||||
span { -moz-user-select:none; }
|
||||
x { -moz-user-select:text; }
|
||||
span { user-select:none; }
|
||||
x { user-select:text; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=582771
|
|||
width: 20px;
|
||||
height: 20px;
|
||||
border: 1px solid black;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=603550
|
|||
width: 20px;
|
||||
height: 20px;
|
||||
border: 1px solid black;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue