1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

LibWeb: Move editing stuff into EditEventHandler.

This commit is contained in:
asynts 2020-12-01 23:35:47 +01:00 committed by Andreas Kling
parent 82aac98bea
commit bbcc5a9332
11 changed files with 161 additions and 22 deletions

View file

@ -0,0 +1,8 @@
<html contenteditable>
<body>
<h1>Everything on this page should be editable.</h1>
<p>Here is a paragraph to play with.</p>
<p>Another paragraph with a <b>bold</b> element embeded in it.</p>
</body>
</html>

View file

@ -38,6 +38,7 @@ span#loadtime {
<p>This page loaded in <b><span id="loadtime"></span></b> ms</p>
<p>Some small test pages:</p>
<ul>
<li><a href="contenteditable.html">contenteditable</a></li>
<li><a href="clear-1.html">clearing floats</a></li>
<li><a href="float-1.html">floating boxes</a></li>
<li><a href="padding-inline.html">inline elements with padding</a></li>