forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
52 lines (52 loc) · 1.27 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html>
<head>
<meta charset="utf-8" />
<title>Content Editable Test</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<main>
<div contenteditable>
<p>
<strong>Some <em>text.</em></strong>
</p>
<p>
<strong>Some <a href="google">text.</a></strong>
</p>
<p>
<strong>Some text.</strong>
</p>
<img src="https://img.washingtonpost.com/wp-apps/imrs.php?src=https://img.washingtonpost.com/news/speaking-of-science/wp-content/uploads/sites/36/2015/10/as12-49-7278-1024x1024.jpg&w=1484" />
<blockquote>
<p>
<strong>Some <a href="google">text.</a></strong>
</p>
<p>
<strong>Some text.</strong>
</p>
</blockquote>
<p></p>
<p></p>
<div contenteditable="false">
<div contenteditable>
<input value="test" />
</div>
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
<table border>
<tr>
<td>1</td>
<td>one</td>
</tr>
<tr>
<td>2</td>
<td>two</td>
</tr>
</table>
</div>
</main>
</body>
</html>