Skip to content

Instantly share code, notes, and snippets.

View Smith1123's full-sized avatar

Smith Smith1123

View GitHub Profile
@Smith1123
Smith1123 / gist:1497265
Created December 19, 2011 13:37
plugin
diff --git a/Source/WebCore/plugins/PluginView.cpp b/Source/WebCore/plugins/PluginView.cpp
index 81bbcc2..a247377 100644
--- a/Source/WebCore/plugins/PluginView.cpp
+++ b/Source/WebCore/plugins/PluginView.cpp
@@ -833,7 +833,7 @@ PluginView::PluginView(Frame* parentFrame, const IntSize& size, PluginPackage* p
#if defined(XP_MACOSX)
, m_isWindowed(false)
#else
- , m_isWindowed(true)
+ , m_isWindowed(false)
@Smith1123
Smith1123 / gist:1383411
Created November 21, 2011 18:16
gardening
From e5a06e876978f169020b56ea5007cc7332c5d5fe Mon Sep 17 00:00:00 2001
From: Feher Zsolt <feher.zsolt@cute4.inf.u-szeged.hu>
Date: Mon, 21 Nov 2011 17:56:33 +0000
Subject: [PATCH] Unreviewed gardening. Reset test results.
---
LayoutTests/ChangeLog | 17 ++++++++++
.../border-spacing-applies-to-015-expected.txt | 12 +++++++
.../css2.1/20110323/table-caption-002-expected.txt | 34 ++++++++++++++++++++
...e-caption-horizontal-alignment-001-expected.txt | 15 +++++++++
diff --git a/LayoutTests/platform/qt-wk2/Skipped b/LayoutTests/platform/qt-wk2/Skipped
index 3583404..bda08b5 100644
--- a/LayoutTests/platform/qt-wk2/Skipped
+++ b/LayoutTests/platform/qt-wk2/Skipped
@@ -1855,3 +1855,5 @@ fast/css/font-face-descending-unicode-range.html
# [Qt][WK2] fast/transforms/scrollIntoView-transformed.html is flaky
# https://bugs.webkit.org/show_bug.cgi?id=70935
fast/transforms/scrollIntoView-transformed.html
+
+editing/pasteboard/data-transfer-items-image-png.html
@Smith1123
Smith1123 / gist:1351296
Created November 9, 2011 12:27
Test list_2
fast/xmlhttprequest/null-document-xmlhttprequest-open.html
fast/xmlhttprequest/xmlhttprequest-bad-mimetype.html
fast/xmlhttprequest/xmlhttprequest-default-attributes.html
fast/xmlhttprequest/xmlhttprequest-gc.html
fast/xmlhttprequest/xmlhttprequest-get.xhtml
fast/xmlhttprequest/xmlhttprequest-html-response-encoding.html
fast/xmlhttprequest/xmlhttprequest-invalid-values.html
fast/xmlhttprequest/xmlhttprequest-missing-file-exception.html
fast/xmlhttprequest/xmlhttprequest-no-file-access.html
fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html
@Smith1123
Smith1123 / gist:1351294
Created November 9, 2011 12:26
Test list_1
accessibility/adjacent-continuations-cause-assertion-failure.html
accessibility/anchor-linked-anonymous-block-crash.html
accessibility/aria-activedescendant-crash.html
accessibility/aria-checkbox-checked.html
accessibility/aria-checkbox-text.html
accessibility/aria-combobox.html
accessibility/aria-controls-with-tabs.html
accessibility/aria-describedby-on-input.html
accessibility/aria-disabled.html
accessibility/aria-fallback-roles.html
diff --git a/LayoutTests/platform/qt-wk2/Skipped b/LayoutTests/platform/qt-wk2/Skipped
index 3583404..bda08b5 100644
--- a/LayoutTests/platform/qt-wk2/Skipped
+++ b/LayoutTests/platform/qt-wk2/Skipped
@@ -1855,3 +1855,5 @@ fast/css/font-face-descending-unicode-range.html
# [Qt][WK2] fast/transforms/scrollIntoView-transformed.html is flaky
# https://bugs.webkit.org/show_bug.cgi?id=70935
fast/transforms/scrollIntoView-transformed.html
+
+editing/pasteboard/data-transfer-items-image-png.html
@Smith1123
Smith1123 / gist:1345703
Created November 7, 2011 18:12
gardening
From c9323f55df2ac649ed6d86f64eea05559ef20985 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Feh=C3=A9r=20Zsolt?= <feherzsolt@smith1123.(none)>
Date: Mon, 7 Nov 2011 10:04:26 -0800
Subject: [PATCH] New test results
---
LayoutTests/ChangeLog | 15 +++
...d-style-can-override-visited-style-expected.txt | 20 ++++
.../multicol/block-axis-horizontal-bt-expected.txt | 58 ++++++++++++
.../multicol/block-axis-horizontal-tb-expected.txt | 62 +++++++++++++
@Smith1123
Smith1123 / gist:1339405
Created November 4, 2011 14:12
Pixel-tests
animations/3d/replace-filling-transform.html
animations/animation-direction-normal.html
animations/missing-values-first-keyframe.html
animations/missing-values-last-keyframe.html
animations/opacity-transform-animation.html
animations/play-state-paused.html
animations/suspend-transform-animation.html
compositing/backface-visibility.html
compositing/checkerboard.html
compositing/geometry/ancestor-overflow-change.html
diff --git a/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py b/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
index ad4745c..29d438d 100644
--- a/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
+++ b/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
@@ -54,6 +54,7 @@ class SingleTestRunner:
self._timeout = test_input.timeout
self._worker_name = worker_name
self._test_name = test_input.test_name
+ self._should_run_pixel_test = test_input.should_run_pixel_test
diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index 4f3cd8d..61510bc 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,3 +1,23 @@
+2011-10-20 Zsolt Fehér <feherzs@inf.u-szeged.hu>
+
+ [WK2] Enable pixel test on WK2 if expected.png exists
+ https://bugs.webkit.org/show_bug.cgi?id=70484
+