-
Notifications
You must be signed in to change notification settings - Fork 367
/
Copy pathselectiontests.html
38 lines (34 loc) · 1.69 KB
/
selectiontests.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
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Rangy - Selection Tests</title>
<script type="text/javascript" src="../external/jshashtable.js"></script>
<script type="text/javascript" src="../external/log4javascript.js"></script>
<script type="text/javascript">
log4javascript.setShowStackTraces(true);
</script>
<!--[if lt IE 9]>
<script type="text/javascript">
log4javascript.setEnabled(false);
</script>
<![endif]-->
<script type="text/javascript" src="xntest.js"></script>
<script type="text/javascript" src="testutils.js"></script>
<script type="text/javascript">
xn.test.enableStackTraces = true;
</script>
<script type="text/javascript" src="../src/core/core.js"></script>
<script type="text/javascript" src="../src/core/dom.js"></script>
<script type="text/javascript" src="../src/core/domrange.js"></script>
<script type="text/javascript" src="../src/core/wrappedrange.js"></script>
<script type="text/javascript" src="../src/core/wrappedselection.js"></script>
<script type="text/javascript" src="selectiontests.js"></script>
<link rel="stylesheet" type="text/css" href="tests.css"/>
</head>
<body>
<div id="test"></div>
<div id="messages"></div>
<script type="text/javascript">document.write('<iframe src="empty.html" id="selectors"><\/iframe>');</script>
</body>
</html>