blob: 0e4b69b4a2af0865ffbbef70dc1ad2d447d416bd (
plain)
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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.draggable {
-khtml-user-drag: element;
-apple-dashboard-region:dashboard-region(control rectangle);
}
.draggable:hover {
background: #cccccc;
}
.draggable:-khtml-drag {
opacity: 0.50;
}
-->
</style>
</head>
<body>
<p>This is the test case for crashing bug <rdar://problem/4234658><p>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td>
<div class="draggable">Click to right of this text and drag</div>
</td>
</tr>
</table>
</body>
</html>
|