Modified: trunk/LayoutTests/ChangeLog (115683 => 115684)
--- trunk/LayoutTests/ChangeLog 2012-04-30 22:46:32 UTC (rev 115683)
+++ trunk/LayoutTests/ChangeLog 2012-04-30 22:49:33 UTC (rev 115684)
@@ -1,3 +1,15 @@
+2012-04-30 Mark Rowe <[email protected]>
+
+ REGRESSION (r115544): platform/mac/fast/events/pointer-events-dashboard.html is failing
+
+ Remove the test since r115544 removed the special behavior in Dashboard.
+
+ Rubber-stamped by Anders Carlsson.
+
+ * platform/mac/fast/events/pointer-events-dashboard-expected.png: Removed.
+ * platform/mac/fast/events/pointer-events-dashboard-expected.txt: Removed.
+ * platform/mac/fast/events/pointer-events-dashboard.html: Removed.
+
2012-04-30 Tom Zakrajsek <[email protected]>
Unreviewed gardening
Deleted: trunk/LayoutTests/platform/mac/fast/events/pointer-events-dashboard-expected.txt (115683 => 115684)
--- trunk/LayoutTests/platform/mac/fast/events/pointer-events-dashboard-expected.txt 2012-04-30 22:46:32 UTC (rev 115683)
+++ trunk/LayoutTests/platform/mac/fast/events/pointer-events-dashboard-expected.txt 2012-04-30 22:49:33 UTC (rev 115684)
@@ -1,29 +0,0 @@
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x105
- RenderBlock {HTML} at (0,0) size 800x105
- RenderBody {BODY} at (8,21) size 784x76
- RenderBlock {H1} at (0,0) size 784x37
- RenderText {#text} at (0,0) size 759x37
- text run at (0,0) width 759: "Testing the values of 'pointer-events' on HTML content"
- RenderBlock {DIV} at (0,58) size 784x18
- RenderText {#text} at (0,0) size 448x18
- text run at (0,0) width 448: "The labels on the left will be clicked and the result is shown to the right"
- RenderBlock {DIV} at (0,76) size 784x0
-layer at (10,120) size 100x30
- RenderBlock (positioned) {P} at (10,120) size 100x30
- RenderText {#text} at (0,0) size 35x23
- text run at (0,0) width 35: "auto"
-layer at (140,120) size 100x30
- RenderBlock (positioned) {P} at (140,120) size 100x30
- RenderText {#text} at (0,0) size 33x23
- text run at (0,0) width 33: "HIT"
-layer at (10,160) size 100x30
- RenderBlock (positioned) {P} at (10,160) size 100x30
- RenderText {#text} at (0,0) size 39x23
- text run at (0,0) width 39: "none"
-layer at (140,160) size 100x30
- RenderBlock (positioned) {P} at (140,160) size 100x30
- RenderText {#text} at (0,0) size 33x23
- text run at (0,0) width 33: "HIT"
-caret: position 0 of child 0 {#text} of child 3 {P} of child 5 {DIV} of body
Deleted: trunk/LayoutTests/platform/mac/fast/events/pointer-events-dashboard.html (115683 => 115684)
--- trunk/LayoutTests/platform/mac/fast/events/pointer-events-dashboard.html 2012-04-30 22:46:32 UTC (rev 115683)
+++ trunk/LayoutTests/platform/mac/fast/events/pointer-events-dashboard.html 2012-04-30 22:49:33 UTC (rev 115684)
@@ -1,72 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
-<html>
-<head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <title>Test for pointer-events property</title>
- <style type="text/css" media="screen">
- p {
- position: absolute;
- width: 100px;
- height: 30px;
- margin: 0;
- padding: 0;
- font-size: 20px;
- }
- </style>
- <script>
- if (window.layoutTestController)
- layoutTestController.setUseDashboardCompatibilityMode(true);
-
- var pointerEventsValues = ['auto', 'none'];
-
- var topEdge = 120;
-
- function clickHit(identifierString) {
- var text = document.getElementById('text' + identifierString);
- text.textContent = 'HIT';
- }
-
- function testContent() {
- var yOffset = topEdge;
-
- var testContent = document.getElementById("test-content");
-
- for (var pi = 0; pi < pointerEventsValues.length; pi++) {
- var eventLabel = document.createElement('p');
- eventLabel.style.left = "10px";
- eventLabel.style.top = yOffset + "px";
- eventLabel.style.pointerEvents = pointerEventsValues[pi];
- eventLabel.textContent = pointerEventsValues[pi];
- eventLabel.setAttribute('onclick', 'clickHit("' + pointerEventsValues[pi] + '")');
- testContent.appendChild(eventLabel);
-
- var hit = document.createElement('p');
- hit.style.left = "140px";
- hit.style.top = yOffset + "px";
- hit.id = "text" + pointerEventsValues[pi];
- hit.appendChild(document.createTextNode("miss"));
-
- testContent.appendChild(hit);
-
- if (window.eventSender) {
- // Cell click
- eventSender.mouseMoveTo(15, yOffset + 10);
- eventSender.mouseDown();
- eventSender.mouseUp();
- }
-
- yOffset += 40;
- }
-
- }
- </script>
-
-</head>
-<body _onload_="testContent()">
- <h1>Testing the values of 'pointer-events' on HTML content</h1>
- <div>The labels on the left will be clicked and the result is shown to the right</div>
- <div id="test-content">
- </div>
-</body>
-</html>