blob: e13700bfbe148c5c9f7ffa85e90dfb0e5450d437 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
textarea {
margin: 10px;
border: 2px dashed black;
padding: 10px;
}
</head>
<body>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<textarea>Something in the air</textarea>
</form>
</body>
</html>
|