-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 loc) · 903 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Safari input memory leak</title>
<link rel="stylesheet" href="/styles/style.css">
</head>
<body>
<h1>Safari input memory leak in SWC components</h1>
<p>This is an sample project to investigate Safari memory leak for input elements.</p>
<p> The issue is that a significant number of detached DOM subtrees are not getting garbage collected because of the
input elements in the tree.</p>
<hr>
<p>Click the corresponding link to check out the samples using different SWC input components:</p>
<div class="links-container">
<a href="/textfield">Textfield</a>
<a href="/number-field">Number field</a>
<a href="/search">Search</a>
<a href="/checkbox">Checkbox</a>
<a href="/radio">Radio</a>
<a href="/switch">Switch</a>
<a href="/slider">Slider</a>
<a href="/input-types">HTML Input Types</a>
</div>
</body>
</html>