diff options
Diffstat (limited to 'Source/WebCore/manual-tests/drag_with_opacity.html')
-rw-r--r-- | Source/WebCore/manual-tests/drag_with_opacity.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Source/WebCore/manual-tests/drag_with_opacity.html b/Source/WebCore/manual-tests/drag_with_opacity.html new file mode 100644 index 0000000..0e4b69b --- /dev/null +++ b/Source/WebCore/manual-tests/drag_with_opacity.html @@ -0,0 +1,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> |