~cytrogen/gstack

ref: f7b95329c1628524583031f6d4672c58a8d86e45 gstack/browse/test/fixtures/states.html -rw-r--r-- 567 bytes
f7b95329 — Garry Tan feat: Phase 3.5 — cookie import, QA testing, team retro (v0.3.1) (#29) a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Test Page - Element States</title>
</head>
<body>
  <h1>Element States Test</h1>
  <input type="text" id="enabled-input" value="enabled" />
  <input type="text" id="disabled-input" value="disabled" disabled />
  <input type="checkbox" id="checked-box" checked />
  <input type="checkbox" id="unchecked-box" />
  <div id="visible-div">Visible</div>
  <div id="hidden-div" style="display: none;">Hidden</div>
  <input type="text" id="readonly-input" readonly value="readonly" />
</body>
</html>