mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
b9c1bf761c
And remove some duplicated tests from WPT. Differential Revision: https://phabricator.services.mozilla.com/D75231
11 lines
232 B
HTML
11 lines
232 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
:read-only { color: red; }
|
|
:read-write { color: green; }
|
|
</style>
|
|
<body onload="document.designMode='on';document.designMode='off'">
|
|
<div contenteditable>test</div>
|
|
</body>
|
|
</html>
|