[webkit-changes] [147529] trunk/Source

2013-04-03 Thread mnaganov
Title: [147529] trunk/Source








Revision 147529
Author mnaga...@chromium.org
Date 2013-04-03 02:19:11 -0700 (Wed, 03 Apr 2013)


Log Message
[Chromium] Implement target-densityDpi viewport property emulation
https://bugs.webkit.org/show_bug.cgi?id=110835

The value is only used in the Chromium port, when the corresponding
setting is enabled.

This is needed for supporting existing WebView-based applications
that rely on this property.

Reviewed by Adam Barth.

Source/WebCore:

* dom/ViewportArguments.cpp:
(WebCore::findTargetDensityDPIValue):
(WebCore):
(WebCore::setViewportFeature):
* dom/ViewportArguments.h:
(WebCore::ViewportArguments::ViewportArguments):
(ViewportArguments):
(WebCore::ViewportArguments::operator==):

Source/WebKit/chromium:

* public/WebSettings.h:
(WebSettings):
* src/ChromeClientImpl.cpp:
(WebKit):
(WebKit::calculateTargetDensityDPIFactor):
(WebKit::ChromeClientImpl::dispatchViewportPropertiesDidChange):
* src/WebSettingsImpl.cpp:
(WebKit::WebSettingsImpl::WebSettingsImpl):
(WebKit::WebSettingsImpl::setSupportDeprecatedTargetDensityDPI):
(WebKit):
* src/WebSettingsImpl.h:
(WebSettingsImpl):
(WebKit::WebSettingsImpl::supportDeprecatedTargetDensityDPI):
* tests/WebFrameTest.cpp:
* tests/data/viewport-target-densitydpi-high.html: Added.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/dom/ViewportArguments.cpp
trunk/Source/WebCore/dom/ViewportArguments.h
trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/public/WebSettings.h
trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp
trunk/Source/WebKit/chromium/src/WebSettingsImpl.cpp
trunk/Source/WebKit/chromium/src/WebSettingsImpl.h
trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp


Added Paths

trunk/Source/WebKit/chromium/tests/data/viewport-target-densitydpi-high.html




Diff

Modified: trunk/Source/WebCore/ChangeLog (147528 => 147529)

--- trunk/Source/WebCore/ChangeLog	2013-04-03 08:56:14 UTC (rev 147528)
+++ trunk/Source/WebCore/ChangeLog	2013-04-03 09:19:11 UTC (rev 147529)
@@ -1,3 +1,25 @@
+2013-04-03  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Implement target-densityDpi viewport property emulation
+https://bugs.webkit.org/show_bug.cgi?id=110835
+
+The value is only used in the Chromium port, when the corresponding
+setting is enabled.
+
+This is needed for supporting existing WebView-based applications
+that rely on this property.
+
+Reviewed by Adam Barth.
+
+* dom/ViewportArguments.cpp:
+(WebCore::findTargetDensityDPIValue):
+(WebCore):
+(WebCore::setViewportFeature):
+* dom/ViewportArguments.h:
+(WebCore::ViewportArguments::ViewportArguments):
+(ViewportArguments):
+(WebCore::ViewportArguments::operator==):
+
 2013-04-03  Mike West  mk...@chromium.org
 
 Extract URL that doesn't inherit a parent's SecurityOrigin out into a constant.


Modified: trunk/Source/WebCore/dom/ViewportArguments.cpp (147528 => 147529)

--- trunk/Source/WebCore/dom/ViewportArguments.cpp	2013-04-03 08:56:14 UTC (rev 147528)
+++ trunk/Source/WebCore/dom/ViewportArguments.cpp	2013-04-03 09:19:11 UTC (rev 147529)
@@ -382,6 +382,25 @@
 return 1;
 }
 
+static float findTargetDensityDPIValue(const String keyString, const String valueString, Document* document)
+{
+if (equalIgnoringCase(valueString, device-dpi))
+return ViewportArguments::ValueDeviceDPI;
+if (equalIgnoringCase(valueString, low-dpi))
+return ViewportArguments::ValueLowDPI;
+if (equalIgnoringCase(valueString, medium-dpi))
+return ViewportArguments::ValueMediumDPI;
+if (equalIgnoringCase(valueString, high-dpi))
+return ViewportArguments::ValueHighDPI;
+
+bool ok;
+float value = numericPrefix(keyString, valueString, document, ok);
+if (!ok || value  70 || value  400)
+return ViewportArguments::ValueAuto;
+
+return value;
+}
+
 void setViewportFeature(const String keyString, const String valueString, Document* document, void* data)
 {
 ViewportArguments* arguments = static_castViewportArguments*(data);
@@ -398,9 +417,10 @@
 arguments-maxZoom = findScaleValue(keyString, valueString, document);
 else if (keyString == user-scalable)
 arguments-userZoom = findUserScalableValue(keyString, valueString, document);
-else if (keyString == target-densitydpi)
+else if (keyString == target-densitydpi) {
+arguments-deprecatedTargetDensityDPI = findTargetDensityDPIValue(keyString, valueString, document);
 reportViewportWarning(document, TargetDensityDpiUnsupported, String(), String());
-else
+} else
 reportViewportWarning(document, UnrecognizedViewportArgumentKeyError, keyString, String());
 }
 


Modified: trunk/Source/WebCore/dom/ViewportArguments.h (147528 => 147529)

--- trunk/Source/WebCore/dom/ViewportArguments.h	2013-04-03 08:56:14 UTC (rev 147528)
+++ 

[webkit-changes] [145714] trunk

2013-03-13 Thread mnaganov
Title: [145714] trunk








Revision 145714
Author mnaga...@chromium.org
Date 2013-03-13 07:13:13 -0700 (Wed, 13 Mar 2013)


Log Message
[Chromium] Rename android_build_type to android_webview_build in .gyp files.
https://bugs.webkit.org/show_bug.cgi?id=112129

Reviewed by Adam Barth.

Following Chromium
http://src.chromium.org/viewvc/chrome?view=revrevision=187556
this is being renamed to better explain what it does.

Source/WebKit/chromium:

* WebKitUnitTests.gyp:

Tools:

* DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/WebKitUnitTests.gyp
trunk/Tools/ChangeLog
trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (145713 => 145714)

--- trunk/Source/WebKit/chromium/ChangeLog	2013-03-13 13:52:39 UTC (rev 145713)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-03-13 14:13:13 UTC (rev 145714)
@@ -1,3 +1,16 @@
+2013-03-13  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Rename android_build_type to android_webview_build in .gyp files.
+https://bugs.webkit.org/show_bug.cgi?id=112129
+
+Reviewed by Adam Barth.
+
+Following Chromium
+http://src.chromium.org/viewvc/chrome?view=revrevision=187556
+this is being renamed to better explain what it does.
+
+* WebKitUnitTests.gyp:
+
 2013-03-13  Pavel Feldman  pfeld...@chromium.org
 
 Web Inspector: convert workers inspection into capability


Modified: trunk/Source/WebKit/chromium/WebKitUnitTests.gyp (145713 => 145714)

--- trunk/Source/WebKit/chromium/WebKitUnitTests.gyp	2013-03-13 13:52:39 UTC (rev 145713)
+++ trunk/Source/WebKit/chromium/WebKitUnitTests.gyp	2013-03-13 14:13:13 UTC (rev 145714)
@@ -144,7 +144,7 @@
 'cflags_cc': ['-Wno-c++0x-compat'],
 },
 }],
-['OS==android and android_build_type==0 and gtest_target_type == shared_library', {
+['OS==android and android_webview_build==0 and gtest_target_type == shared_library', {
 # Wrap libwebkit_unit_tests.so into an android apk for execution.
 'targets': [{
 'target_name': 'webkit_unit_tests_apk',


Modified: trunk/Tools/ChangeLog (145713 => 145714)

--- trunk/Tools/ChangeLog	2013-03-13 13:52:39 UTC (rev 145713)
+++ trunk/Tools/ChangeLog	2013-03-13 14:13:13 UTC (rev 145714)
@@ -1,3 +1,16 @@
+2013-03-13  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Rename android_build_type to android_webview_build in .gyp files.
+https://bugs.webkit.org/show_bug.cgi?id=112129
+
+Reviewed by Adam Barth.
+
+Following Chromium
+http://src.chromium.org/viewvc/chrome?view=revrevision=187556
+this is being renamed to better explain what it does.
+
+* DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
+
 2013-03-13  Simon Hausmann  simon.hausm...@digia.com
 
 [Qt] Unreviewed trivial typo fix


Modified: trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp (145713 => 145714)

--- trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp	2013-03-13 13:52:39 UTC (rev 145713)
+++ trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp	2013-03-13 14:13:13 UTC (rev 145714)
@@ -69,12 +69,12 @@
 '(tools_dir)/DumpRenderTree/chromium/ImageDiff.cpp',
 ],
 'conditions': [
-['OS==android and android_build_type==0', {
+['OS==android and android_webview_build==0', {
 # The Chromium Android port will compare images on host rather
 # than target (a device or emulator) for performance reasons.
 'toolsets': ['host'],
 }],
-['OS==android and android_build_type!=0', {
+['OS==android and android_webview_build==1', {
 'type': 'none',
 }],
 ],
@@ -219,7 +219,7 @@
 ]
 }],
 }],
-['OS==android and android_build_type==0', {
+['OS==android and android_webview_build==0', {
 'dependencies': [
 'ImageDiff#host',
 ],






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [143735] trunk/Source/WebKit/chromium

2013-02-22 Thread mnaganov
Title: [143735] trunk/Source/WebKit/chromium








Revision 143735
Author mnaga...@chromium.org
Date 2013-02-22 08:46:55 -0800 (Fri, 22 Feb 2013)


Log Message
[Chromium] Add support for emulating legacy Android WebView 'setInitialScale' method
https://bugs.webkit.org/show_bug.cgi?id=109946

Adding a WebView method for permanently setting initial page scale.
This override has higher priority than any calculated page scale
and viewport meta tag value.

Also, this patch eliminates a dubious fixed layout enabled, viewport disabled mode
previously used by Android WebView.

Reviewed by Adam Barth.

* public/WebView.h:
(WebView):
* src/ChromeClientImpl.cpp:
(WebKit::ChromeClientImpl::dispatchViewportPropertiesDidChange):
* src/WebViewImpl.cpp:
(WebKit::WebViewImpl::WebViewImpl):
(WebKit::WebViewImpl::setInitialPageScaleOverride):
(WebKit):
(WebKit::WebViewImpl::computePageScaleFactorLimits):
* src/WebViewImpl.h:
* tests/WebFrameTest.cpp:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/public/WebView.h
trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp
trunk/Source/WebKit/chromium/src/WebViewImpl.cpp
trunk/Source/WebKit/chromium/src/WebViewImpl.h
trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (143734 => 143735)

--- trunk/Source/WebKit/chromium/ChangeLog	2013-02-22 16:41:20 UTC (rev 143734)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-02-22 16:46:55 UTC (rev 143735)
@@ -1,3 +1,29 @@
+2013-02-22  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Add support for emulating legacy Android WebView 'setInitialScale' method
+https://bugs.webkit.org/show_bug.cgi?id=109946
+
+Adding a WebView method for permanently setting initial page scale.
+This override has higher priority than any calculated page scale
+and viewport meta tag value.
+
+Also, this patch eliminates a dubious fixed layout enabled, viewport disabled mode
+previously used by Android WebView.
+
+Reviewed by Adam Barth.
+
+* public/WebView.h:
+(WebView):
+* src/ChromeClientImpl.cpp:
+(WebKit::ChromeClientImpl::dispatchViewportPropertiesDidChange):
+* src/WebViewImpl.cpp:
+(WebKit::WebViewImpl::WebViewImpl):
+(WebKit::WebViewImpl::setInitialPageScaleOverride):
+(WebKit):
+(WebKit::WebViewImpl::computePageScaleFactorLimits):
+* src/WebViewImpl.h:
+* tests/WebFrameTest.cpp:
+
 2013-02-22  Mark Pilgrim  pilg...@chromium.org
 
 [Chromium] WebKit::initialize should take a Platform* now that WebKitPlatformSupport is empty


Modified: trunk/Source/WebKit/chromium/public/WebView.h (143734 => 143735)

--- trunk/Source/WebKit/chromium/public/WebView.h	2013-02-22 16:41:20 UTC (rev 143734)
+++ trunk/Source/WebKit/chromium/public/WebView.h	2013-02-22 16:46:55 UTC (rev 143735)
@@ -229,6 +229,10 @@
 WEBKIT_EXPORT static double zoomLevelToZoomFactor(double zoomLevel);
 WEBKIT_EXPORT static double zoomFactorToZoomLevel(double factor);
 
+// Sets the initial page scale to the given factor. This scale setting overrides
+// page scale set in the page's viewport meta tag.
+virtual void setInitialPageScaleOverride(float) = 0;
+
 // Gets the scale factor of the page, where 1.0 is the normal size,  1.0
 // is scaled up,  1.0 is scaled down.
 virtual float pageScaleFactor() const = 0;


Modified: trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp (143734 => 143735)

--- trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp	2013-02-22 16:41:20 UTC (rev 143734)
+++ trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp	2013-02-22 16:46:55 UTC (rev 143735)
@@ -639,7 +639,7 @@
 void ChromeClientImpl::dispatchViewportPropertiesDidChange(const ViewportArguments arguments) const
 {
 #if ENABLE(VIEWPORT)
-if (!m_webView-isFixedLayoutModeEnabled() || !m_webView-client() || !m_webView-page())
+if (!m_webView-settings()-viewportEnabled() || !m_webView-isFixedLayoutModeEnabled() || !m_webView-client() || !m_webView-page())
 return;
 
 IntSize viewportSize = m_webView-dipSize();
@@ -649,15 +649,7 @@
 if (!viewportSize.width() || !viewportSize.height())
 return;
 
-ViewportAttributes computed;
-if (m_webView-settings()-viewportEnabled()) {
-computed = arguments.resolve(viewportSize, viewportSize, m_webView-page()-settings()-layoutFallbackWidth());
-} else {
-// If viewport tag is disabled but fixed layout is still enabled, (for
-// example, on Android WebView with UseWideViewport false), compute
-// based on the default viewport arguments.
-computed = ViewportArguments().resolve(viewportSize, viewportSize, viewportSize.width());
-}
+ViewportAttributes computed = arguments.resolve(viewportSize, viewportSize, m_webView-page()-settings()-layoutFallbackWidth());
 

[webkit-changes] [142875] trunk/Source/WebKit/chromium

2013-02-14 Thread mnaganov
Title: [142875] trunk/Source/WebKit/chromium








Revision 142875
Author mnaga...@chromium.org
Date 2013-02-14 05:53:30 -0800 (Thu, 14 Feb 2013)


Log Message
[Chromium] Add a setting to control scaling content to fit viewport
https://bugs.webkit.org/show_bug.cgi?id=109584

Adds a setting called 'initializeAtMinimumPageScale'. By default,
it is set to 'true' which corresponds to Chrome on Android behavior--
adjust the page scale to make the content fit into the viewport
by width. When set to false, the setting instructs ChromeClientImpl to
set page scale to 1.0, unless the scale value is set by the page
in the viewport meta-tag.

Reviewed by Adam Barth.

* public/WebSettings.h:
* src/ChromeClientImpl.cpp:
(WebKit::ChromeClientImpl::dispatchViewportPropertiesDidChange):
* src/WebSettingsImpl.cpp:
(WebKit::WebSettingsImpl::WebSettingsImpl):
(WebKit::WebSettingsImpl::setInitializeAtMinimumPageScale):
(WebKit):
* src/WebSettingsImpl.h:
(WebSettingsImpl):
(WebKit::WebSettingsImpl::initializeAtMinimumPageScale):
* tests/WebFrameTest.cpp:
* tests/data/viewport-2x-initial-scale.html: Added.
* tests/data/viewport-auto-initial-scale.html: Added.

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/public/WebSettings.h
trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp
trunk/Source/WebKit/chromium/src/WebSettingsImpl.cpp
trunk/Source/WebKit/chromium/src/WebSettingsImpl.h
trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp


Added Paths

trunk/Source/WebKit/chromium/tests/data/viewport-2x-initial-scale.html
trunk/Source/WebKit/chromium/tests/data/viewport-auto-initial-scale.html




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (142874 => 142875)

--- trunk/Source/WebKit/chromium/ChangeLog	2013-02-14 13:39:54 UTC (rev 142874)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-02-14 13:53:30 UTC (rev 142875)
@@ -1,3 +1,31 @@
+2013-02-14  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Add a setting to control scaling content to fit viewport
+https://bugs.webkit.org/show_bug.cgi?id=109584
+
+Adds a setting called 'initializeAtMinimumPageScale'. By default,
+it is set to 'true' which corresponds to Chrome on Android behavior--
+adjust the page scale to make the content fit into the viewport
+by width. When set to false, the setting instructs ChromeClientImpl to
+set page scale to 1.0, unless the scale value is set by the page
+in the viewport meta-tag.
+
+Reviewed by Adam Barth.
+
+* public/WebSettings.h:
+* src/ChromeClientImpl.cpp:
+(WebKit::ChromeClientImpl::dispatchViewportPropertiesDidChange):
+* src/WebSettingsImpl.cpp:
+(WebKit::WebSettingsImpl::WebSettingsImpl):
+(WebKit::WebSettingsImpl::setInitializeAtMinimumPageScale):
+(WebKit):
+* src/WebSettingsImpl.h:
+(WebSettingsImpl):
+(WebKit::WebSettingsImpl::initializeAtMinimumPageScale):
+* tests/WebFrameTest.cpp:
+* tests/data/viewport-2x-initial-scale.html: Added.
+* tests/data/viewport-auto-initial-scale.html: Added.
+
 2013-02-14  Sheriff Bot  webkit.review@gmail.com
 
 Unreviewed, rolling out r142808.


Modified: trunk/Source/WebKit/chromium/public/WebSettings.h (142874 => 142875)

--- trunk/Source/WebKit/chromium/public/WebSettings.h	2013-02-14 13:39:54 UTC (rev 142874)
+++ trunk/Source/WebKit/chromium/public/WebSettings.h	2013-02-14 13:53:30 UTC (rev 142875)
@@ -116,6 +116,7 @@
 virtual void setGestureTapHighlightEnabled(bool) = 0;
 virtual void setHyperlinkAuditingEnabled(bool) = 0;
 virtual void setImagesEnabled(bool) = 0;
+virtual void setInitializeAtMinimumPageScale(bool) = 0;
 virtual void setInteractiveFormValidationEnabled(bool) = 0;
 virtual void setJavaEnabled(bool) = 0;
 virtual void setJavaScriptCanAccessClipboard(bool) = 0;


Modified: trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp (142874 => 142875)

--- trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp	2013-02-14 13:39:54 UTC (rev 142874)
+++ trunk/Source/WebKit/chromium/src/ChromeClientImpl.cpp	2013-02-14 13:53:30 UTC (rev 142875)
@@ -666,6 +666,8 @@
 computed.maximumScale = max(computed.maximumScale, m_webView-maxPageScaleFactor);
 computed.userScalable = true;
 }
+if (arguments.zoom == ViewportArguments::ValueAuto  !m_webView-settingsImpl()-initializeAtMinimumPageScale())
+computed.initialScale = 1.0f;
 if (!m_webView-settingsImpl()-applyDeviceScaleFactorInCompositor())
 computed.initialScale *= deviceScaleFactor;
 


Modified: trunk/Source/WebKit/chromium/src/WebSettingsImpl.cpp (142874 => 142875)

--- trunk/Source/WebKit/chromium/src/WebSettingsImpl.cpp	2013-02-14 13:39:54 UTC (rev 142874)
+++ trunk/Source/WebKit/chromium/src/WebSettingsImpl.cpp	2013-02-14 13:53:30 UTC (rev 142875)
@@ -54,6 +54,7 @@
 , m_renderVSyncEnabled(true)
 , 

[webkit-changes] [139187] trunk/Source/WebKit/chromium

2013-01-09 Thread mnaganov
Title: [139187] trunk/Source/WebKit/chromium








Revision 139187
Author mnaga...@chromium.org
Date 2013-01-09 05:32:43 -0800 (Wed, 09 Jan 2013)


Log Message
[Chromium] Unreviewed: A trivial fix for WebFrameTest.DivAutoZoomParamsTest after r139177.

* tests/WebFrameTest.cpp:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (139186 => 139187)

--- trunk/Source/WebKit/chromium/ChangeLog	2013-01-09 13:31:47 UTC (rev 139186)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-01-09 13:32:43 UTC (rev 139187)
@@ -1,3 +1,9 @@
+2013-01-09  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed: A trivial fix for WebFrameTest.DivAutoZoomParamsTest after r139177.
+
+* tests/WebFrameTest.cpp:
+
 2013-01-08  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] When viewport is disabled, use display width in DIP pixels for the fallback width


Modified: trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp (139186 => 139187)

--- trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp	2013-01-09 13:31:47 UTC (rev 139186)
+++ trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp	2013-01-09 13:32:43 UTC (rev 139187)
@@ -341,10 +341,10 @@
 int viewportWidth = 640;
 int viewportHeight = 480;
 WebKit::WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + get_scale_for_auto_zoom_into_div_test.html);
-webView-enableFixedLayoutMode(true);
 webView-setDeviceScaleFactor(2.0f);
 webView-resize(WebSize(viewportWidth, viewportHeight));
 webView-setPageScaleFactorLimits(0.01f, 4);
+webView-enableFixedLayoutMode(true);
 webView-layout();
 
 WebRect wideDiv(200, 100, 400, 150);






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [132478] trunk

2012-10-25 Thread mnaganov
Title: [132478] trunk








Revision 132478
Author mnaga...@chromium.org
Date 2012-10-25 06:20:32 -0700 (Thu, 25 Oct 2012)


Log Message
[Chromium] Add supportMultipleWindows setting, needed for Android
https://bugs.webkit.org/show_bug.cgi?id=99716

Reviewed by Adam Barth.

Add supportMultipleWindows settings for reusing the same view when
opening popups. This is required for emulating the behavior of
Android WebView. Adding into WebCore, as other ports might want to
use this setting in the future.

Source/WebCore:

Tests: fast/dom/HTMLAnchorElement/anchor-no-multiple-windows.html
   fast/dom/Window/window-open-no-multiple-windows.html
   fast/forms/post-popup-no-multiple-windows.html

* loader/FrameLoader.cpp:
(WebCore::createWindow):
* page/ContextMenuController.cpp:
(WebCore::openNewWindow):
* page/Settings.cpp:
(WebCore::Settings::Settings):
(WebCore::Settings::setSupportsMultipleWindows):
(WebCore):
* page/Settings.h:
(Settings):
(WebCore::Settings::supportsMultipleWindows):

Source/WebKit/chromium:

* public/WebSettings.h:
* src/FrameLoaderClientImpl.cpp:
(WebKit::FrameLoaderClientImpl::dispatchCreatePage):
* src/WebSettingsImpl.cpp:
(WebKit::WebSettingsImpl::setSupportsMultipleWindows):
(WebKit):
* src/WebSettingsImpl.h:
(WebSettingsImpl):

Tools:

* DumpRenderTree/chromium/DRTTestRunner.cpp:
(DRTTestRunner::overridePreference):
* DumpRenderTree/chromium/WebPreferences.cpp:
(WebPreferences::reset):
(WebPreferences::applyTo):
* DumpRenderTree/chromium/WebPreferences.h:
(WebPreferences):

LayoutTests:

* fast/dom/HTMLAnchorElement/anchor-no-multiple-windows-expected.txt: Added.
* fast/dom/HTMLAnchorElement/anchor-no-multiple-windows.html: Added.
* fast/dom/Window/window-open-no-multiple-windows-expected.txt: Added.
* fast/dom/Window/window-open-no-multiple-windows.html: Added.
* fast/forms/post-popup-no-multiple-windows-expected.txt: Added.
* fast/forms/post-popup-no-multiple-windows.html: Added.
* platform/chromium/fast/dom/HTMLAnchorElement/anchor-no-multiple-windows-expected.txt: Added.
* platform/chromium/fast/dom/Window/window-open-no-multiple-windows-expected.txt: Added.
* platform/chromium/fast/forms/post-popup-no-multiple-windows-expected.txt: Added.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/loader/FrameLoader.cpp
trunk/Source/WebCore/page/ContextMenuController.cpp
trunk/Source/WebCore/page/Settings.cpp
trunk/Source/WebCore/page/Settings.h
trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/public/WebSettings.h
trunk/Source/WebKit/chromium/src/FrameLoaderClientImpl.cpp
trunk/Source/WebKit/chromium/src/WebSettingsImpl.cpp
trunk/Source/WebKit/chromium/src/WebSettingsImpl.h
trunk/Tools/ChangeLog
trunk/Tools/DumpRenderTree/chromium/DRTTestRunner.cpp
trunk/Tools/DumpRenderTree/chromium/WebPreferences.cpp
trunk/Tools/DumpRenderTree/chromium/WebPreferences.h


Added Paths

trunk/LayoutTests/fast/dom/HTMLAnchorElement/anchor-no-multiple-windows-expected.txt
trunk/LayoutTests/fast/dom/HTMLAnchorElement/anchor-no-multiple-windows.html
trunk/LayoutTests/fast/dom/Window/window-open-no-multiple-windows-expected.txt
trunk/LayoutTests/fast/dom/Window/window-open-no-multiple-windows.html
trunk/LayoutTests/fast/forms/post-popup-no-multiple-windows-expected.txt
trunk/LayoutTests/fast/forms/post-popup-no-multiple-windows.html
trunk/LayoutTests/platform/chromium/fast/dom/HTMLAnchorElement/anchor-no-multiple-windows-expected.txt
trunk/LayoutTests/platform/chromium/fast/dom/Window/window-open-no-multiple-windows-expected.txt
trunk/LayoutTests/platform/chromium/fast/forms/post-popup-no-multiple-windows-expected.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (132477 => 132478)

--- trunk/LayoutTests/ChangeLog	2012-10-25 13:05:04 UTC (rev 132477)
+++ trunk/LayoutTests/ChangeLog	2012-10-25 13:20:32 UTC (rev 132478)
@@ -1,3 +1,25 @@
+2012-10-22  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Add supportMultipleWindows setting, needed for Android
+https://bugs.webkit.org/show_bug.cgi?id=99716
+
+Reviewed by Adam Barth.
+
+Add supportMultipleWindows settings for reusing the same view when
+opening popups. This is required for emulating the behavior of
+Android WebView. Adding into WebCore, as other ports might want to
+use this setting in the future.
+
+* fast/dom/HTMLAnchorElement/anchor-no-multiple-windows-expected.txt: Added.
+* fast/dom/HTMLAnchorElement/anchor-no-multiple-windows.html: Added.
+* fast/dom/Window/window-open-no-multiple-windows-expected.txt: Added.
+* fast/dom/Window/window-open-no-multiple-windows.html: Added.
+* fast/forms/post-popup-no-multiple-windows-expected.txt: Added.
+* fast/forms/post-popup-no-multiple-windows.html: Added.
+* platform/chromium/fast/dom/HTMLAnchorElement/anchor-no-multiple-windows-expected.txt: Added.
+* 

[webkit-changes] [117419] branches/chromium/1132

2012-05-17 Thread mnaganov
Title: [117419] branches/chromium/1132








Revision 117419
Author mnaga...@chromium.org
Date 2012-05-17 02:24:38 -0700 (Thu, 17 May 2012)


Log Message
Merge 117307 - Avoid jumpscroll when entering new text in a multi-line editor.
https://bugs.webkit.org/show_bug.cgi?id=82875

Reviewed by Ryosuke Niwa

Scroll caret to the edge of the viewport in case if a line break or a paragraph
separator is inserted at the end of a multi-line editor.  This avoids
undesirable jumpscroll in cases when there is content under the editor.

Tests: editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable.html
   editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea.html
   editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable.html

* editing/Editor.cpp:
(WebCore::Editor::insertLineBreak):
(WebCore::Editor::insertParagraphSeparator):
(WebCore::Editor::revealSelectionAfterEditingOperation):
* editing/Editor.h:
(Editor):

* editing/input/resources/reveal-utilities.js:
(performJumpAtTheEdgeTest):
* editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt: Added.
* editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable.html: Added.
* editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea-expected.txt: Added.
* editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea.html: Added.
* editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable-expected.txt: Added.
* editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable.html: Added.

TBR=mnaga...@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10382217

Modified Paths

branches/chromium/1132/LayoutTests/editing/input/resources/reveal-utilities.js
branches/chromium/1132/Source/WebCore/editing/Editor.cpp
branches/chromium/1132/Source/WebCore/editing/Editor.h


Added Paths

branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt
branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable.html
branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea-expected.txt
branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea.html
branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable-expected.txt
branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable.html




Diff

Modified: branches/chromium/1132/LayoutTests/editing/input/resources/reveal-utilities.js (117418 => 117419)

--- branches/chromium/1132/LayoutTests/editing/input/resources/reveal-utilities.js	2012-05-17 09:12:54 UTC (rev 117418)
+++ branches/chromium/1132/LayoutTests/editing/input/resources/reveal-utilities.js	2012-05-17 09:24:38 UTC (rev 117419)
@@ -64,3 +64,27 @@
 document.execCommand(paste);
 }
 }
+
+function performJumpAtTheEdgeTest(useCtrlKeyModifier)
+{
+var textArea = document.getElementById(input);
+textArea.focus();
+if (window.eventSender) {
+var previousScrollTop = 0, currentScrollTop = 0;
+var jumpDetected = false;
+for (var i = 0; i  120; ++i) {
+previousScrollTop = document.body.scrollTop;
+eventSender.keyDown(\r, useCtrlKeyModifier ? [ctrlKey] : []);
+currentScrollTop = document.body.scrollTop;
+// Smooth scrolls are allowed.
+if (Math.abs(previousScrollTop - currentScrollTop)  24) {
+jumpDetected = true;
+break;
+}
+}
+if (!jumpDetected)
+document.write(PASS);
+else
+document.write(FAILbrJump scroll from  + previousScrollTop +  to  + currentScrollTop);
+}
+}


Copied: branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt (from rev 117307, trunk/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt) (0 => 117419)

--- branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt	(rev 0)
+++ branches/chromium/1132/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt	2012-05-17 09:24:38 UTC (rev 117419)
@@ -0,0 +1,123 @@
+When the caret is scrolled out and resides at the end of the contenteditable, on pressing Ctrl+Return it must be scrolled to the bottom of the view, not to the center to avoid undesirable content view jumping.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

[webkit-changes] [117481] trunk/Source

2012-05-17 Thread mnaganov
Title: [117481] trunk/Source








Revision 117481
Author mnaga...@chromium.org
Date 2012-05-17 12:38:37 -0700 (Thu, 17 May 2012)


Log Message
Support Copy ... actions for the Web Inspector remote debugging mode.
https://bugs.webkit.org/show_bug.cgi?id=86621

Reviewed by Pavel Feldman.

Source/WebCore:

* English.lproj/localizedStrings.js:
* inspector/front-end/InspectorFrontendHostStub.js:
(.WebInspector.InspectorFrontendHostStub):
(.WebInspector.InspectorFrontendHostStub.prototype.documentCopy):
(.WebInspector.InspectorFrontendHostStub.prototype.copyText):
(.WebInspector.clipboardAccessDeniedMessage):
(.WebInspector.ClipboardAccessDeniedScreen):
* inspector/front-end/inspector.html:
* inspector/front-end/inspector.js:
(WebInspector.documentCopy):
(WebInspector.documentCopyEventFired):

Source/WebKit/chromium:

* src/js/DevTools.js:
(WebInspector.clipboardAccessDeniedMessage):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/English.lproj/localizedStrings.js
trunk/Source/WebCore/inspector/front-end/InspectorFrontendHostStub.js
trunk/Source/WebCore/inspector/front-end/inspector.html
trunk/Source/WebCore/inspector/front-end/inspector.js
trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/src/js/DevTools.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (117480 => 117481)

--- trunk/Source/WebCore/ChangeLog	2012-05-17 19:36:25 UTC (rev 117480)
+++ trunk/Source/WebCore/ChangeLog	2012-05-17 19:38:37 UTC (rev 117481)
@@ -1,3 +1,22 @@
+2012-05-17  Mikhail Naganov  mnaga...@chromium.org
+
+Support Copy ... actions for the Web Inspector remote debugging mode.
+https://bugs.webkit.org/show_bug.cgi?id=86621
+
+Reviewed by Pavel Feldman.
+
+* English.lproj/localizedStrings.js:
+* inspector/front-end/InspectorFrontendHostStub.js:
+(.WebInspector.InspectorFrontendHostStub):
+(.WebInspector.InspectorFrontendHostStub.prototype.documentCopy):
+(.WebInspector.InspectorFrontendHostStub.prototype.copyText):
+(.WebInspector.clipboardAccessDeniedMessage):
+(.WebInspector.ClipboardAccessDeniedScreen):
+* inspector/front-end/inspector.html:
+* inspector/front-end/inspector.js:
+(WebInspector.documentCopy):
+(WebInspector.documentCopyEventFired):
+
 2012-05-02  Robert Hogan  rob...@webkit.org
 
 CSS 2.1 failure: table-height-algorithm-023 and -024 fail


Modified: trunk/Source/WebCore/English.lproj/localizedStrings.js

(Binary files differ)


Modified: trunk/Source/WebCore/inspector/front-end/InspectorFrontendHostStub.js (117480 => 117481)

--- trunk/Source/WebCore/inspector/front-end/InspectorFrontendHostStub.js	2012-05-17 19:36:25 UTC (rev 117480)
+++ trunk/Source/WebCore/inspector/front-end/InspectorFrontendHostStub.js	2012-05-17 19:38:37 UTC (rev 117481)
@@ -37,6 +37,7 @@
 {
 this._attachedWindowHeight = 0;
 this.isStub = true;
+WebInspector.documentCopyEventFired = this.documentCopy.bind(this);
 }
 
 WebInspector.InspectorFrontendHostStub.prototype = {
@@ -109,10 +110,24 @@
 document.title = WebInspector.UIString(Preferences.applicationTitle, url);
 },
 
-copyText: function()
+documentCopy: function(event)
 {
+if (!this._textToCopy)
+return;
+event.clipboardData.setData(text, this._textToCopy);
+event.preventDefault();
+delete this._textToCopy;
 },
 
+copyText: function(text)
+{
+this._textToCopy = text;
+if (!document.execCommand(copy)) {
+var screen = new WebInspector.ClipboardAccessDeniedScreen();
+screen.showModal();
+}
+},
+
 openInNewTab: function(url)
 {
 window.open(url, _blank);
@@ -175,5 +190,27 @@
 var InspectorFrontendHost = new WebInspector.InspectorFrontendHostStub();
 Preferences.localizeUI = false;
 
+// Default implementation; platforms will override.
+WebInspector.clipboardAccessDeniedMessage = function()
+{
+return ;
 }
 
+/**
+ * @constructor
+ * @extends {WebInspector.HelpScreen}
+ */
+WebInspector.ClipboardAccessDeniedScreen = function()
+{
+WebInspector.HelpScreen.call(this, WebInspector.UIString(Clipboard access is denied));
+var platformMessage = WebInspector.clipboardAccessDeniedMessage();
+if (platformMessage) {
+var p = this.contentElement.createChild(p);
+p.addStyleClass(help-section);
+p.textContent = platformMessage;
+}
+}
+
+WebInspector.ClipboardAccessDeniedScreen.prototype.__proto__ = WebInspector.HelpScreen.prototype;
+
+}


Modified: trunk/Source/WebCore/inspector/front-end/inspector.html (117480 => 117481)

--- trunk/Source/WebCore/inspector/front-end/inspector.html	2012-05-17 19:36:25 UTC (rev 117480)
+++ trunk/Source/WebCore/inspector/front-end/inspector.html	2012-05-17 19:38:37 UTC (rev 117481)
@@ -45,6 +45,8 @@
 script type=text/_javascript_ src=""
 script type=text/_javascript_ src=""
 script 

[webkit-changes] [117307] trunk

2012-05-16 Thread mnaganov
Title: [117307] trunk








Revision 117307
Author mnaga...@chromium.org
Date 2012-05-16 10:45:32 -0700 (Wed, 16 May 2012)


Log Message
Avoid jumpscroll when entering new text in a multi-line editor.
https://bugs.webkit.org/show_bug.cgi?id=82875

Reviewed by Ryosuke Niwa

Scroll caret to the edge of the viewport in case if a line break or a paragraph
separator is inserted at the end of a multi-line editor.  This avoids
undesirable jumpscroll in cases when there is content under the editor.

Tests: editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable.html
   editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea.html
   editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable.html

* editing/Editor.cpp:
(WebCore::Editor::insertLineBreak):
(WebCore::Editor::insertParagraphSeparator):
(WebCore::Editor::revealSelectionAfterEditingOperation):
* editing/Editor.h:
(Editor):

* editing/input/resources/reveal-utilities.js:
(performJumpAtTheEdgeTest):
* editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt: Added.
* editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable.html: Added.
* editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea-expected.txt: Added.
* editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea.html: Added.
* editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable-expected.txt: Added.
* editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable.html: Added.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/editing/input/resources/reveal-utilities.js
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/editing/Editor.cpp
trunk/Source/WebCore/editing/Editor.h


Added Paths

trunk/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt
trunk/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable.html
trunk/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea-expected.txt
trunk/LayoutTests/editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea.html
trunk/LayoutTests/editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable-expected.txt
trunk/LayoutTests/editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable.html




Diff

Modified: trunk/LayoutTests/ChangeLog (117306 => 117307)

--- trunk/LayoutTests/ChangeLog	2012-05-16 17:36:23 UTC (rev 117306)
+++ trunk/LayoutTests/ChangeLog	2012-05-16 17:45:32 UTC (rev 117307)
@@ -1,3 +1,23 @@
+2012-05-16  Mikhail Naganov  mnaga...@chromium.org
+
+Avoid jumpscroll when entering new text in a multi-line editor.
+https://bugs.webkit.org/show_bug.cgi?id=82875
+
+Reviewed by Ryosuke Niwa.
+
+Scroll caret to the edge of the viewport in case if a line break or a paragraph
+separator is inserted at the end of a multi-line editor.  This avoids
+undesirable jumpscroll in cases when there is content under the editor.
+
+* editing/input/resources/reveal-utilities.js:
+(performJumpAtTheEdgeTest):
+* editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt: Added.
+* editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable.html: Added.
+* editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea-expected.txt: Added.
+* editing/input/scroll-to-edge-if-line-break-at-end-of-document-textarea.html: Added.
+* editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable-expected.txt: Added.
+* editing/input/scroll-to-edge-if-paragraph-separator-at-end-of-document-contenteditable.html: Added.
+
 2012-05-16  Abhishek Arya  infe...@chromium.org
 
 Missing RenderApplet cast check in HTMLAppletElement::renderWidgetForJSBindings.


Modified: trunk/LayoutTests/editing/input/resources/reveal-utilities.js (117306 => 117307)

--- trunk/LayoutTests/editing/input/resources/reveal-utilities.js	2012-05-16 17:36:23 UTC (rev 117306)
+++ trunk/LayoutTests/editing/input/resources/reveal-utilities.js	2012-05-16 17:45:32 UTC (rev 117307)
@@ -64,3 +64,27 @@
 document.execCommand(paste);
 }
 }
+
+function performJumpAtTheEdgeTest(useCtrlKeyModifier)
+{
+var textArea = document.getElementById(input);
+textArea.focus();
+if (window.eventSender) {
+var previousScrollTop = 0, currentScrollTop = 0;
+var jumpDetected = false;
+for (var i = 0; i  120; ++i) {
+previousScrollTop = document.body.scrollTop;
+eventSender.keyDown(\r, useCtrlKeyModifier ? [ctrlKey] : []);
+currentScrollTop = document.body.scrollTop;
+// Smooth scrolls are allowed.
+if 

[webkit-changes] [115179] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115179] trunk/LayoutTests








Revision 115179
Author mnaga...@chromium.org
Date 2012-04-25 03:34:52 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update

Unmark html5lib/runner.html -- changes that broke it were reverted in r115149.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115178 => 115179)

--- trunk/LayoutTests/ChangeLog	2012-04-25 10:05:06 UTC (rev 115178)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 10:34:52 UTC (rev 115179)
@@ -1,3 +1,11 @@
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+
+Unmark html5lib/runner.html -- changes that broke it were reverted in r115149.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-25  Sergio Villar Senin  svil...@igalia.com
 
 Unreviewed. Unskipped 28 http tests passing on all the GTK+ bots.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115178 => 115179)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 10:05:06 UTC (rev 115178)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 10:34:52 UTC (rev 115179)
@@ -3737,7 +3737,6 @@
 BUGWK83978 WIN MAC: tables/mozilla_expected_failures/collapsing_borders/bug41262-5.html = IMAGE+TEXT
 
 BUGWK84802 : fast/js/random-array-gc-stress.html = FAIL TIMEOUT
-BUGWK84806 : html5lib/runner.html = TEXT
 BUGWK84810 LINUX WIN : svg/carto.net/window.svg = IMAGE+TEXT
 BUGWK84810 MAC : svg/carto.net/window.svg = IMAGE
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115180] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115180] trunk/LayoutTests








Revision 115180
Author mnaga...@chromium.org
Date 2012-04-25 03:40:51 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update
https://bugs.webkit.org/show_bug.cgi?id=84813

Mark these tests as failing only on Mac and Windows:

css3/filters/custom/custom-filter-shader-cache.html
css3/filters/custom/effect-custom-combined-missing.html
css3/filters/custom/effect-custom.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115179 => 115180)

--- trunk/LayoutTests/ChangeLog	2012-04-25 10:34:52 UTC (rev 115179)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 10:40:51 UTC (rev 115180)
@@ -1,7 +1,20 @@
 2012-04-25  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update
+https://bugs.webkit.org/show_bug.cgi?id=84813
 
+Mark these tests as failing only on Mac and Windows:
+
+css3/filters/custom/custom-filter-shader-cache.html
+css3/filters/custom/effect-custom-combined-missing.html
+css3/filters/custom/effect-custom.html
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+
 Unmark html5lib/runner.html -- changes that broke it were reverted in r115149.
 
 * platform/chromium/test_expectations.txt:


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115179 => 115180)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 10:34:52 UTC (rev 115179)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 10:40:51 UTC (rev 115180)
@@ -3741,7 +3741,7 @@
 BUGWK84810 MAC : svg/carto.net/window.svg = IMAGE
 
 // Suppress the errors at the moment, rebaseline coming soon.
-BUGWK84813 : css3/filters/custom/custom-filter-shader-cache.html = IMAGE
-BUGWK84813 : css3/filters/custom/effect-custom-combined-missing.html = IMAGE
+BUGWK84813 MAC WIN : css3/filters/custom/custom-filter-shader-cache.html = IMAGE
+BUGWK84813 MAC WIN : css3/filters/custom/effect-custom-combined-missing.html = IMAGE
 BUGWK84813 : css3/filters/custom/effect-custom-parameters.html = IMAGE
-BUGWK84813 : css3/filters/custom/effect-custom.html = IMAGE
+BUGWK84813 MAC WIN : css3/filters/custom/effect-custom.html = IMAGE






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115181] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115181] trunk/LayoutTests








Revision 115181
Author mnaga...@chromium.org
Date 2012-04-25 03:44:33 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update

Unmark these tests as failing on Windows:
fast/repaint/moving-shadow-on-container.html
fast/repaint/moving-shadow-on-path.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115180 => 115181)

--- trunk/LayoutTests/ChangeLog	2012-04-25 10:40:51 UTC (rev 115180)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 10:44:33 UTC (rev 115181)
@@ -1,6 +1,16 @@
 2012-04-25  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update
+
+Unmark these tests as failing on Windows:
+fast/repaint/moving-shadow-on-container.html
+fast/repaint/moving-shadow-on-path.html
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
 https://bugs.webkit.org/show_bug.cgi?id=84813
 
 Mark these tests as failing only on Mac and Windows:


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115180 => 115181)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 10:40:51 UTC (rev 115180)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 10:44:33 UTC (rev 115181)
@@ -3364,8 +3364,6 @@
 BUGWK81145 LION : fast/events/scrollbar-double-click.html = TEXT
 
 BUGYANGGUO MAC : fast/repaint/moving-shadow-on-container.html = TEXT
-BUGYANGGUO WIN : fast/repaint/moving-shadow-on-container.html = TEXT
-BUGYANGGUO WIN : fast/repaint/moving-shadow-on-path.html = TEXT
 
 BUGWK77368 WIN : css3/flexbox/child-overflow.html = IMAGE
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115183] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115183] trunk/LayoutTests








Revision 115183
Author mnaga...@chromium.org
Date 2012-04-25 04:17:44 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update

Remove expectation for a passing test:
fast/dom/error-to-string-stack-overflow.html

Add an expectation for a passing test:
fast/viewport/scroll-delegates-switch-on-page-with-no-composition-mode-asserts.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115182 => 115183)

--- trunk/LayoutTests/ChangeLog	2012-04-25 11:01:42 UTC (rev 115182)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 11:17:44 UTC (rev 115183)
@@ -2,6 +2,18 @@
 
 [Chromium] Unreviewed test expectations update
 
+Remove expectation for a passing test:
+fast/dom/error-to-string-stack-overflow.html
+
+Add an expectation for a passing test:
+fast/viewport/scroll-delegates-switch-on-page-with-no-composition-mode-asserts.html
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+
 Unmark these tests as failing on Windows:
 fast/repaint/moving-shadow-on-container.html
 fast/repaint/moving-shadow-on-path.html


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115182 => 115183)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 11:01:42 UTC (rev 115182)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 11:17:44 UTC (rev 115183)
@@ -2139,6 +2139,7 @@
 BUGWK45652 : fast/viewport/viewport-127.html = MISSING
 BUGWK45652 : fast/viewport/viewport-128.html = TIMEOUT TEXT
 BUGWK45652 : fast/viewport/viewport-129.html = TIMEOUT MISSING TEXT
+BUGWK45652 : fast/viewport/scroll-delegates-switch-on-page-with-no-composition-mode-asserts.html = PASS
 
 BUGWK45737 BUGCR100056 DEBUG : fast/frames/frame-limit.html = TIMEOUT
 
@@ -3613,8 +3614,6 @@
 // important.
 BUG_OJAN SKIP : fast/js/global-constructors.html = FAIL
 
-BUGWK82993 LINUX : fast/dom/error-to-string-stack-overflow.html = TEXT
-
 // This should only be a layer change.
 BUGWK82129 : fast/box-shadow/shadow-buffer-partial.html = TEXT
 BUGWK82129 MAC : fast/block/lineboxcontain/block-font.html = TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115185] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115185] trunk/LayoutTests








Revision 115185
Author mnaga...@chromium.org
Date 2012-04-25 04:46:23 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update

Unmark the following CSS pseudo-class tests:

fast/css/empty-pseudo-class.html
fast/css/first-child-pseudo-class.html
fast/css/first-of-type-pseudo-class.html
fast/css/last-child-pseudo-class.html
fast/css/last-of-type-pseudo-class.html
fast/css/only-child-pseudo-class.html
fast/css/only-of-type-pseudo-class.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115184 => 115185)

--- trunk/LayoutTests/ChangeLog	2012-04-25 11:36:22 UTC (rev 115184)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 11:46:23 UTC (rev 115185)
@@ -2,6 +2,22 @@
 
 [Chromium] Unreviewed test expectations update
 
+Unmark the following CSS pseudo-class tests:
+
+fast/css/empty-pseudo-class.html
+fast/css/first-child-pseudo-class.html
+fast/css/first-of-type-pseudo-class.html
+fast/css/last-child-pseudo-class.html
+fast/css/last-of-type-pseudo-class.html
+fast/css/only-child-pseudo-class.html
+fast/css/only-of-type-pseudo-class.html
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+
 Remove expectation for a passing test:
 fast/dom/error-to-string-stack-overflow.html
 


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115184 => 115185)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 11:36:22 UTC (rev 115184)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 11:46:23 UTC (rev 115185)
@@ -2516,8 +2516,6 @@
 BUGCR76610 WIN DEBUG : canvas/philip/tests/2d.text.draw.align.center.html = PASS TEXT
 BUGCR76610 MAC WIN DEBUG : platform/chromium/virtual/gpu/canvas/philip/tests/2d.text.draw.align.center.html = PASS TEXT
 
-BUGCR76716 LINUX WIN DEBUG : fast/css/first-child-pseudo-class.html = PASS TEXT
-
 // New in WebKit r81404. Text orientation is wrong and emphasis marks are wrong.
 BUGCR76616 LINUX WIN : fast/text/emphasis-combined-text.html = IMAGE+TEXT
 BUGCR76616 LEOPARD : fast/text/emphasis-combined-text.html = IMAGE
@@ -2588,7 +2586,6 @@
 BUGCR780807 : http/tests/misc/webtiming-origins.html = PASS TEXT
 
 BUGCR78835 : plugins/npp-set-window-called-during-destruction.html = TEXT
-BUGCR78996 LINUX WIN DEBUG : fast/css/first-of-type-pseudo-class.html = PASS TEXT
 // http://trac.webkit.org/changeset/83411/ merged some frame tests into one.
 // The merged test is flaky on Chromium since then.
 BUGCR78998 DEBUG : fast/frames/frame-element-name.html = PASS TEXT
@@ -2611,8 +2608,6 @@
 // Flaky, perhaps Skia related.
 BUGCR79851 LINUX : fast/table/frame-and-rules.html = PASS TEXT
 
-BUGCR79855 LINUX WIN DEBUG : fast/css/only-child-pseudo-class.html = PASS TEXT
-
 BUGCR79857 DEBUG : fast/events/popup-blocking-timers.html = PASS TEXT
 
 BUGCR79859 LINUX DEBUG : fast/css/create_element_align.xhtml = PASS TIMEOUT
@@ -2624,7 +2619,6 @@
 BUGWK58924 MAC : plugins/mouse-click-iframe-to-plugin.html = PASS TIMEOUT
 
 BUGWK60099 DEBUG : fast/dom/Attr/access-after-element-destruction.html = PASS CRASH
-BUGWK60096 LINUX WIN DEBUG : fast/css/last-child-pseudo-class.html = PASS TEXT
 BUGWK60097 DEBUG : fast/dom/HTMLLinkElement/link-and-subresource-test.html = PASS TEXT
 
 // Looks like some uninitialized memory at the bottom.
@@ -2649,7 +2643,6 @@
 
 BUGDPRANKE WIN DEBUG : http/tests/misc/empty-file-formdata.html = PASS TIMEOUT
 BUGDPRANKE WIN DEBUG : http/tests/xmlhttprequest/access-control-preflight-headers-async.html = PASS TIMEOUT
-BUGDPRANKE LINUX WIN DEBUG : fast/css/only-of-type-pseudo-class.html = PASS TEXT
 
 // Introduced in r84443
 BUGWK59063 : fast/images/animated-gif-restored-from-bfcache.html = TEXT
@@ -2693,9 +2686,6 @@
 
 BUGDPRANKE DEBUG : http/tests/misc/window-dot-stop.html = PASS TEXT
 
-// flakiness on the deps bots (noted r~83476)
-BUGWK60105 LINUX WIN DEBUG : fast/css/empty-pseudo-class.html = PASS TEXT
-
 // New test added in r85303.
 BUG_HCLAM : compositing/masks/layer-mask-placement.html = IMAGE
 
@@ -2842,8 +2832,6 @@
 
 BUGCR88230 VISTA : fast/dom/dom-parse-serialize-display.html = PASS TIMEOUT
 
-BUGCR88311 LINUX WIN DEBUG : fast/css/last-of-type-pseudo-class.html = PASS TEXT
-
 // Started around WebKit r90233:r90242
 BUGWK64000 DEBUG : fast/events/click-focus-anchor.html = PASS TEXT
 
@@ -2954,26 +2942,6 @@
 BUGWK68437 LEOPARD : platform/chromium/virtual/gpu/fast/canvas/patternfill-repeat.html = IMAGE
 BUGWK68437 LEOPARD : platform/chromium/virtual/gpu/fast/canvas/setWidthResetAfterForcedRender.html = IMAGE
 
-// These should fall under BUGWK68270, but they were 

[webkit-changes] [115186] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115186] trunk/LayoutTests








Revision 115186
Author mnaga...@chromium.org
Date 2012-04-25 04:54:46 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update
https://bugs.webkit.org/show_bug.cgi?id=84847

Mark inspector/timeline/timeline-start-time.html as flaky on Windows.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115185 => 115186)

--- trunk/LayoutTests/ChangeLog	2012-04-25 11:46:23 UTC (rev 115185)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 11:54:46 UTC (rev 115186)
@@ -1,7 +1,16 @@
 2012-04-25  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update
+https://bugs.webkit.org/show_bug.cgi?id=84847
 
+Mark inspector/timeline/timeline-start-time.html as flaky on Windows.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+
 Unmark the following CSS pseudo-class tests:
 
 fast/css/empty-pseudo-class.html


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115185 => 115186)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 11:46:23 UTC (rev 115185)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 11:54:46 UTC (rev 115186)
@@ -3710,3 +3710,5 @@
 BUGWK84813 MAC WIN : css3/filters/custom/effect-custom-combined-missing.html = IMAGE
 BUGWK84813 : css3/filters/custom/effect-custom-parameters.html = IMAGE
 BUGWK84813 MAC WIN : css3/filters/custom/effect-custom.html = IMAGE
+
+BUGWK84847 WIN : inspector/timeline/timeline-start-time.html = TEXT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115190] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115190] trunk/LayoutTests








Revision 115190
Author mnaga...@chromium.org
Date 2012-04-25 06:15:06 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update
https://bugs.webkit.org/show_bug.cgi?id=84854

Mark the following tests as flaky on Linux 32-bit:

svg/batik/text/textOnPath.svg
svg/batik/text/verticalTextOnPath.svg

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115189 => 115190)

--- trunk/LayoutTests/ChangeLog	2012-04-25 12:32:01 UTC (rev 115189)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 13:15:06 UTC (rev 115190)
@@ -1,3 +1,15 @@
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+https://bugs.webkit.org/show_bug.cgi?id=84854
+
+Mark the following tests as flaky on Linux 32-bit:
+
+svg/batik/text/textOnPath.svg
+svg/batik/text/verticalTextOnPath.svg
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-25  Yury Semikhatsky  yu...@chromium.org
 
 Web Inspector: use composite node provider for diff nodes in heap profiler


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115189 => 115190)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 12:32:01 UTC (rev 115189)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 13:15:06 UTC (rev 115190)
@@ -3715,3 +3715,6 @@
 BUGWK84813 MAC WIN : css3/filters/custom/effect-custom.html = IMAGE
 
 BUGWK84847 WIN : inspector/timeline/timeline-start-time.html = TEXT PASS
+
+BUGWK84854 LINUX X86 : svg/batik/text/textOnPath.svg = IMAGE PASS
+BUGWK84854 LINUX X86 : svg/batik/text/verticalTextOnPath.svg = IMAGE PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115211] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115211] trunk/LayoutTests








Revision 115211
Author mnaga...@chromium.org
Date 2012-04-25 08:24:31 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update
https://bugs.webkit.org/show_bug.cgi?id=82300

Unmark compositing/images/direct-pdf-image.html as failing on Mac 10.6

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115210 => 115211)

--- trunk/LayoutTests/ChangeLog	2012-04-25 15:22:12 UTC (rev 115210)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 15:24:31 UTC (rev 115211)
@@ -1,3 +1,12 @@
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+https://bugs.webkit.org/show_bug.cgi?id=82300
+
+Unmark compositing/images/direct-pdf-image.html as failing on Mac 10.6
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-25  Milian Wolff  milian.wo...@kdab.com
 
 [Qt] add LayoutTestController::setPrinting support to Qt unit tests


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115210 => 115211)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 15:22:12 UTC (rev 115210)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 15:24:31 UTC (rev 115211)
@@ -3545,8 +3545,6 @@
 BUGWK82297 SNOWLEOPARD : fast/events/platform-wheelevent-paging-y-in-scrolling-page.html = TEXT PASS
 BUGWK82297 SNOWLEOPARD : fast/events/scrollbar-double-click.html = TEXT PASS
 
-BUGWK82300 SNOWLEOPARD : compositing/images/direct-pdf-image.html = IMAGE
-
 // this test appears to consistently fail during the main run but usually passes on a retry.
 BUGWK82404 : plugins/netscape-dom-access-and-reload.html = PASS TEXT
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115214] trunk/LayoutTests

2012-04-25 Thread mnaganov
Title: [115214] trunk/LayoutTests








Revision 115214
Author mnaga...@chromium.org
Date 2012-04-25 08:37:20 -0700 (Wed, 25 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update
https://bugs.webkit.org/show_bug.cgi?id=84427

Unmark platform/chromium/editing/spelling/delete-misspelled-word.html as flaky.
The test has been fixed in r114866.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115213 => 115214)

--- trunk/LayoutTests/ChangeLog	2012-04-25 15:36:22 UTC (rev 115213)
+++ trunk/LayoutTests/ChangeLog	2012-04-25 15:37:20 UTC (rev 115214)
@@ -1,3 +1,13 @@
+2012-04-25  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+https://bugs.webkit.org/show_bug.cgi?id=84427
+
+Unmark platform/chromium/editing/spelling/delete-misspelled-word.html as flaky.
+The test has been fixed in r114866.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-25  Ádám Kallai  ka...@inf.u-szeged.hu
 
 [Qt] Unreviewed gardening. Skip a flaky test.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115213 => 115214)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 15:36:22 UTC (rev 115213)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-25 15:37:20 UTC (rev 115214)
@@ -3647,9 +3647,6 @@
 BUGWK84125 DEBUG : http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html = CRASH
 BUGWK84125 DEBUG : http/tests/websocket/tests/hixie76/workers/worker-simple.html = CRASH
 
-BUGWK84427 LINUX DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = TIMEOUT
-BUGWK84427 MAC WIN DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = PASS TIMEOUT
-
 BUGWK84432 WIN : fast/filesystem/op-restricted-names.html = TEXT
 BUGWK84432 WIN : fast/filesystem/op-restricted-unicode.html = TEXT
 BUGWK84432 WIN : fast/filesystem/read-directory.html = TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115014] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115014] trunk/LayoutTests








Revision 115014
Author mnaga...@chromium.org
Date 2012-04-24 02:09:35 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.

Mark certain media tests after FFmpeg roll in Chromium:
media/media-controller-playback.html
media/track/track-cues-missed.html
media/track/track-cues-pause-on-exit.html
media/track/track-cues-sorted-before-dispatch.html
media/video-colorspace-yuv422.html
media/video-currentTime-delay.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115013 => 115014)

--- trunk/LayoutTests/ChangeLog	2012-04-24 09:06:24 UTC (rev 115013)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 09:09:35 UTC (rev 115014)
@@ -1,3 +1,17 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+
+Mark certain media tests after FFmpeg roll in Chromium:
+media/media-controller-playback.html
+media/track/track-cues-missed.html
+media/track/track-cues-pause-on-exit.html
+media/track/track-cues-sorted-before-dispatch.html
+media/video-colorspace-yuv422.html
+media/video-currentTime-delay.html
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Philippe Normand  pnorm...@igalia.com
 
 Unreviewed, GTK test_expectations and another media rebaseline


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115013 => 115014)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 09:06:24 UTC (rev 115013)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 09:09:35 UTC (rev 115014)
@@ -3712,3 +3712,12 @@
 BUGWK84550 SNOWLEOPARD : fast/canvas/2d.text.draw.fill.maxWidth.gradient.html = TEXT PASS
 
 BUGWK84596 : media/encrypted-media/encrypted-media-events.html = PASS CRASH
+
+BUGCR124777 : media/video-colorspace-yuv422.html = IMAGE+TEXT TIMEOUT
+
+BUGCR124779 : media/media-controller-playback.html = CRASH
+BUGCR124779 : media/track/track-cues-missed.html = CRASH
+BUGCR124779 : media/track/track-cues-pause-on-exit.html = CRASH
+BUGCR124779 : media/track/track-cues-sorted-before-dispatch.html = CRASH
+
+BUGCR124783 : media/video-currentTime-delay.html = TEXT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115017] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115017] trunk/LayoutTests








Revision 115017
Author mnaga...@chromium.org
Date 2012-04-24 02:28:02 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84688

Mark compositing/animation/computed-style-during-delay.html as flaky on Mac 10.6

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115016 => 115017)

--- trunk/LayoutTests/ChangeLog	2012-04-24 09:17:18 UTC (rev 115016)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 09:28:02 UTC (rev 115017)
@@ -1,3 +1,12 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84688
+
+Mark compositing/animation/computed-style-during-delay.html as flaky on Mac 10.6
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Kent Tamura  tk...@chromium.org
 
 [Chromium] All of datalist tests are passing.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115016 => 115017)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 09:17:18 UTC (rev 115016)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 09:28:02 UTC (rev 115017)
@@ -3717,3 +3717,5 @@
 BUGCR124779 : media/track/track-cues-sorted-before-dispatch.html = CRASH
 
 BUGCR124783 : media/video-currentTime-delay.html = TEXT PASS
+
+BUGWK84688 SNOWLEOPARD : compositing/animation/computed-style-during-delay.html = TEXT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115019] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115019] trunk/LayoutTests








Revision 115019
Author mnaga...@chromium.org
Date 2012-04-24 02:34:48 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84689

Mark fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html as flaky on Mac 10.6

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115018 => 115019)

--- trunk/LayoutTests/ChangeLog	2012-04-24 09:32:06 UTC (rev 115018)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 09:34:48 UTC (rev 115019)
@@ -1,3 +1,12 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84689
+
+Mark fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html as flaky on Mac 10.6
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Christophe Dumez  christophe.du...@intel.com
 
 [EFL] move tests that require LayoutTestController's layerTreeAsText to test expectations


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115018 => 115019)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 09:32:06 UTC (rev 115018)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 09:34:48 UTC (rev 115019)
@@ -3719,3 +3719,5 @@
 BUGCR124783 : media/video-currentTime-delay.html = TEXT PASS
 
 BUGWK84688 SNOWLEOPARD : compositing/animation/computed-style-during-delay.html = TEXT PASS
+
+BUGWK84689 SNOWLEOPARD : fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html = TIMEOUT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115021] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115021] trunk/LayoutTests








Revision 115021
Author mnaga...@chromium.org
Date 2012-04-24 02:40:48 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.

Fix lint error in the test expectations file.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115020 => 115021)

--- trunk/LayoutTests/ChangeLog	2012-04-24 09:38:57 UTC (rev 115020)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 09:40:48 UTC (rev 115021)
@@ -1,3 +1,11 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+
+Fix lint error in the test expectations file.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Philippe Normand  pnorm...@igalia.com
 
 Unreviewed, re-add the GTK baselines that were removed during last


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115020 => 115021)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 09:38:57 UTC (rev 115020)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 09:40:48 UTC (rev 115021)
@@ -3266,8 +3266,6 @@
 
 BUGWK80058 WIN : fast/workers/stress-js-execution.html = CRASH PASS
 
-BUGWK80067 DEBUG : media/track/track-cues-pause-on-exit.html = PASS TEXT
-
 BUGV8_1973 : fast/js/caller-property.html = TEXT
 
 BUGWK78684 : fast/block/basic/fieldset-stretch-to-legend.html = FAIL
@@ -3716,6 +3714,9 @@
 BUGCR124779 : media/track/track-cues-pause-on-exit.html = CRASH
 BUGCR124779 : media/track/track-cues-sorted-before-dispatch.html = CRASH
 
+// Uncomment after CR124779 is resolved (if the test is still flaky)
+// BUGWK80067 DEBUG : media/track/track-cues-pause-on-exit.html = PASS TEXT
+
 BUGCR124783 : media/video-currentTime-delay.html = TEXT PASS
 
 BUGWK84688 SNOWLEOPARD : compositing/animation/computed-style-during-delay.html = TEXT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115025] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115025] trunk/LayoutTests








Revision 115025
Author mnaga...@chromium.org
Date 2012-04-24 03:34:26 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84698

Mark fast/forms/placeholder-position.html as flaky on Linux

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115024 => 115025)

--- trunk/LayoutTests/ChangeLog	2012-04-24 10:18:16 UTC (rev 115024)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 10:34:26 UTC (rev 115025)
@@ -1,3 +1,12 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84698
+
+Mark fast/forms/placeholder-position.html as flaky on Linux
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Szilard Ledan  szle...@inf.u-szeged.hu
 
 [Qt] Gardening


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115024 => 115025)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 10:18:16 UTC (rev 115024)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 10:34:26 UTC (rev 115025)
@@ -3722,3 +3722,5 @@
 BUGWK84688 SNOWLEOPARD : compositing/animation/computed-style-during-delay.html = TEXT PASS
 
 BUGWK84689 SNOWLEOPARD : fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html = TIMEOUT PASS
+
+BUGWK84698 LINUX : fast/forms/placeholder-position.html = IMAGE PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115026] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115026] trunk/LayoutTests








Revision 115026
Author mnaga...@chromium.org
Date 2012-04-24 03:36:51 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84696

Mark fast/workers/storage/interrupt-database.html as flaky on Mac 10.6

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115025 => 115026)

--- trunk/LayoutTests/ChangeLog	2012-04-24 10:34:26 UTC (rev 115025)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 10:36:51 UTC (rev 115026)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84696
+
+Mark fast/workers/storage/interrupt-database.html as flaky on Mac 10.6
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=84698
 
 Mark fast/forms/placeholder-position.html as flaky on Linux


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115025 => 115026)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 10:34:26 UTC (rev 115025)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 10:36:51 UTC (rev 115026)
@@ -3724,3 +3724,5 @@
 BUGWK84689 SNOWLEOPARD : fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html = TIMEOUT PASS
 
 BUGWK84698 LINUX : fast/forms/placeholder-position.html = IMAGE PASS
+
+BUGWK84696 SNOWLEOPARD : fast/workers/storage/interrupt-database.html = TIMEOUT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115027] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115027] trunk/LayoutTests








Revision 115027
Author mnaga...@chromium.org
Date 2012-04-24 03:43:27 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=79454

Mark svg/text/text-rescale.html as flaky on release Linux as well.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115026 => 115027)

--- trunk/LayoutTests/ChangeLog	2012-04-24 10:36:51 UTC (rev 115026)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 10:43:27 UTC (rev 115027)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=79454
+
+Mark svg/text/text-rescale.html as flaky on release Linux as well.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=84696
 
 Mark fast/workers/storage/interrupt-database.html as flaky on Mac 10.6


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115026 => 115027)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 10:36:51 UTC (rev 115026)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 10:43:27 UTC (rev 115027)
@@ -1185,7 +1185,7 @@
 BUGWK78830 DEBUG : svg/custom/mask-invalidation.svg = IMAGE PASS
 
 // Failing since added by r108699
-BUGWK79454 LINUX MAC DEBUG : svg/text/text-rescale.html = IMAGE PASS
+BUGWK79454 LINUX MAC : svg/text/text-rescale.html = IMAGE PASS
 BUGWK79454 LINUX MAC : svg/text/text-viewbox-rescale.html = IMAGE PASS
 
 BUGWK79456 DEBUG : svg/repaint/image-with-clip-path.svg = PASS IMAGE






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115037] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115037] trunk/LayoutTests








Revision 115037
Author mnaga...@chromium.org
Date 2012-04-24 05:41:59 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84712

Mark http/tests/inspector/network/x-frame-options-deny.html as flaky on Vista.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115036 => 115037)

--- trunk/LayoutTests/ChangeLog	2012-04-24 12:40:30 UTC (rev 115036)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 12:41:59 UTC (rev 115037)
@@ -1,3 +1,12 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84712
+
+Mark http/tests/inspector/network/x-frame-options-deny.html as flaky on Vista.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Philippe Normand  pnorm...@igalia.com
 
 Unreviewed, fix some more GTK baselines after r114836.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115036 => 115037)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 12:40:30 UTC (rev 115036)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 12:41:59 UTC (rev 115037)
@@ -3726,3 +3726,5 @@
 BUGWK84698 LINUX : fast/forms/placeholder-position.html = IMAGE PASS
 
 BUGWK84696 SNOWLEOPARD : fast/workers/storage/interrupt-database.html = TIMEOUT PASS
+
+BUGWK84712 VISTA : http/tests/inspector/network/x-frame-options-deny.html = TIMEOUT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115039] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115039] trunk/LayoutTests








Revision 115039
Author mnaga...@chromium.org
Date 2012-04-24 05:49:43 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84714

Mark compositing/geometry/empty-embed-rects.html as flaky on Mac 10.6.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115038 => 115039)

--- trunk/LayoutTests/ChangeLog	2012-04-24 12:49:03 UTC (rev 115038)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 12:49:43 UTC (rev 115039)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84714
+
+Mark compositing/geometry/empty-embed-rects.html as flaky on Mac 10.6.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=84712
 
 Mark http/tests/inspector/network/x-frame-options-deny.html as flaky on Vista.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115038 => 115039)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 12:49:03 UTC (rev 115038)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 12:49:43 UTC (rev 115039)
@@ -3728,3 +3728,5 @@
 BUGWK84696 SNOWLEOPARD : fast/workers/storage/interrupt-database.html = TIMEOUT PASS
 
 BUGWK84712 VISTA : http/tests/inspector/network/x-frame-options-deny.html = TIMEOUT PASS
+
+BUGWK84714 SNOWLEOPARD : compositing/geometry/empty-embed-rects.html = TIMEOUT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115040] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115040] trunk/LayoutTests








Revision 115040
Author mnaga...@chromium.org
Date 2012-04-24 05:56:48 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=75161

Unmark media/video-poster-blocked-by-willsendrequest.html -- fails no more after FFmpeg roll 132717:133551 in Chromium.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115039 => 115040)

--- trunk/LayoutTests/ChangeLog	2012-04-24 12:49:43 UTC (rev 115039)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 12:56:48 UTC (rev 115040)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=75161
+
+Unmark media/video-poster-blocked-by-willsendrequest.html -- fails no more after FFmpeg roll 132717:133551 in Chromium.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=84714
 
 Mark compositing/geometry/empty-embed-rects.html as flaky on Mac 10.6.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115039 => 115040)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 12:49:43 UTC (rev 115039)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 12:56:48 UTC (rev 115040)
@@ -3153,8 +3153,6 @@
 BUGWK77136 DEBUG : fast/workers/storage/interrupt-database.html = PASS CRASH TIMEOUT
 BUGWK77136 WIN RELEASE : fast/workers/storage/interrupt-database.html = PASS TIMEOUT
 
-BUGWK75161 : media/video-poster-blocked-by-willsendrequest.html = TEXT
-
 // Crashes due to an OOM error on V8.
 BUGCR108832 SKIP : fast/js/array-splice.html = CRASH
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115041] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115041] trunk/LayoutTests








Revision 115041
Author mnaga...@chromium.org
Date 2012-04-24 06:03:41 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=82628

Unmark svg/hittest/svg-ellipse-non-scale-stroke.xhtml -- passes for a long time.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115040 => 115041)

--- trunk/LayoutTests/ChangeLog	2012-04-24 12:56:48 UTC (rev 115040)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 13:03:41 UTC (rev 115041)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=82628
+
+Unmark svg/hittest/svg-ellipse-non-scale-stroke.xhtml -- passes for a long time.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=75161
 
 Unmark media/video-poster-blocked-by-willsendrequest.html -- fails no more after FFmpeg roll 132717:133551 in Chromium.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115040 => 115041)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 12:56:48 UTC (rev 115040)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 13:03:41 UTC (rev 115041)
@@ -1228,8 +1228,6 @@
 
 BUGWK82509 LINUX : svg/text/append-text-node-to-tspan.html = PASS IMAGE
 
-BUGWK82628 : svg/hittest/svg-ellipse-non-scale-stroke.xhtml = FAIL
-
 // Flaky on MAC
 BUGWK82911 MAC : svg/W3C-SVG-1.1/animate-elem-80-t.svg = TEXT IMAGE+TEXT IMAGE PASS
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115044] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115044] trunk/LayoutTests








Revision 115044
Author mnaga...@chromium.org
Date 2012-04-24 06:28:10 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=65063

Unmark as failing on Mac 10.6 css2.1/t0905-c414-flt-01-d-g.html.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115043 => 115044)

--- trunk/LayoutTests/ChangeLog	2012-04-24 13:28:06 UTC (rev 115043)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 13:28:10 UTC (rev 115044)
@@ -1,7 +1,16 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=65063
 
+Unmark as failing on Mac 10.6 css2.1/t0905-c414-flt-01-d-g.html.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+
 Unmark as failing on Mac 10.5 the following tests:
 fast/backgrounds/size/backgroundSize15.html
 fast/events/reveal-link-when-focused.html


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115043 => 115044)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 13:28:06 UTC (rev 115043)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 13:28:10 UTC (rev 115044)
@@ -2856,8 +2856,6 @@
 
 BUGWK65009 MAC : scrollbars/scrollbar-drag-thumb-with-large-content.html = TEXT
 
-BUGWK65063 SNOWLEOPARD : css2.1/t0905-c414-flt-01-d-g.html = IMAGE
-
 BUGWK65124 LINUX WIN : fast/repaint/japanese-rl-selection-clear.html = IMAGE+TEXT
 BUGWK65124 WIN : fast/repaint/japanese-rl-selection-repaint.html = IMAGE+TEXT
 BUGWK65124 WIN LINUX : fast/repaint/japanese-rl-selection-repaint-in-regions.html = IMAGE+TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115048] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115048] trunk/LayoutTests








Revision 115048
Author mnaga...@chromium.org
Date 2012-04-24 07:09:40 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84719

Mark svg/text/select-text-svgfont.html as flaky on Windows.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115047 => 115048)

--- trunk/LayoutTests/ChangeLog	2012-04-24 13:50:57 UTC (rev 115047)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 14:09:40 UTC (rev 115048)
@@ -1,3 +1,12 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84719
+
+Mark svg/text/select-text-svgfont.html as flaky on Windows.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Christophe Dumez  christophe.du...@intel.com
 
 [EFL] Enable Web Timing


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115047 => 115048)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 13:50:57 UTC (rev 115047)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 14:09:40 UTC (rev 115048)
@@ -3712,3 +3712,5 @@
 BUGWK84712 VISTA : http/tests/inspector/network/x-frame-options-deny.html = TIMEOUT PASS
 
 BUGWK84714 SNOWLEOPARD : compositing/geometry/empty-embed-rects.html = TIMEOUT PASS
+
+BUGWK84719 WIN : svg/text/select-text-svgfont.html = TEXT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115049] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115049] trunk/LayoutTests








Revision 115049
Author mnaga...@chromium.org
Date 2012-04-24 07:16:19 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84720

Mark fast/repaint/fixed-right-in-page-scale.html as flaky in debug mode.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115048 => 115049)

--- trunk/LayoutTests/ChangeLog	2012-04-24 14:09:40 UTC (rev 115048)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 14:16:19 UTC (rev 115049)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84720
+
+Mark fast/repaint/fixed-right-in-page-scale.html as flaky in debug mode.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=84719
 
 Mark svg/text/select-text-svgfont.html as flaky on Windows.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115048 => 115049)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 14:09:40 UTC (rev 115048)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 14:16:19 UTC (rev 115049)
@@ -3714,3 +3714,5 @@
 BUGWK84714 SNOWLEOPARD : compositing/geometry/empty-embed-rects.html = TIMEOUT PASS
 
 BUGWK84719 WIN : svg/text/select-text-svgfont.html = TEXT PASS
+
+BUGWK84720 DEBUG: fast/repaint/fixed-right-in-page-scale.html = IMAGE PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115050] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115050] trunk/LayoutTests








Revision 115050
Author mnaga...@chromium.org
Date 2012-04-24 07:22:50 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
http://crbug.com/31623

Mark http/tests/appcache/remove-cache.html as flaky on Mac 10.6.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115049 => 115050)

--- trunk/LayoutTests/ChangeLog	2012-04-24 14:16:19 UTC (rev 115049)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 14:22:50 UTC (rev 115050)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+http://crbug.com/31623
+
+Mark http/tests/appcache/remove-cache.html as flaky on Mac 10.6.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=84720
 
 Mark fast/repaint/fixed-right-in-page-scale.html as flaky in debug mode.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115049 => 115050)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 14:16:19 UTC (rev 115049)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 14:22:50 UTC (rev 115050)
@@ -1803,7 +1803,7 @@
 // WebKit roll 52468-52535
 BUGCR31991 LINUX WIN : fast/text/international/bidi-layout-across-linebreak.html = TEXT
 
-BUGCR31623 WIN : http/tests/appcache/remove-cache.html = PASS TIMEOUT TEXT
+BUGCR31623 WIN SNOWLEOPARD : http/tests/appcache/remove-cache.html = PASS TIMEOUT TEXT
 
 // V8's implementation of getOwnPropertyNames has different results for built-in
 // functions.






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115051] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115051] trunk/LayoutTests








Revision 115051
Author mnaga...@chromium.org
Date 2012-04-24 07:29:23 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84724

Mark platform/chromium/media/video-frame-size-change.html as flaky on Mac 10.6.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115050 => 115051)

--- trunk/LayoutTests/ChangeLog	2012-04-24 14:22:50 UTC (rev 115050)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 14:29:23 UTC (rev 115051)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84724
+
+Mark platform/chromium/media/video-frame-size-change.html as flaky on Mac 10.6.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 http://crbug.com/31623
 
 Mark http/tests/appcache/remove-cache.html as flaky on Mac 10.6.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115050 => 115051)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 14:22:50 UTC (rev 115050)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 14:29:23 UTC (rev 115051)
@@ -3716,3 +3716,5 @@
 BUGWK84719 WIN : svg/text/select-text-svgfont.html = TEXT PASS
 
 BUGWK84720 DEBUG: fast/repaint/fixed-right-in-page-scale.html = IMAGE PASS
+
+BUGWK84724 SNOWLEOPARD: platform/chromium/media/video-frame-size-change.html = IMAGE PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115054] trunk/Tools

2012-04-24 Thread mnaganov
Title: [115054] trunk/Tools








Revision 115054
Author mnaga...@chromium.org
Date 2012-04-24 07:51:57 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84726

Mark webkitpy.layout_tests.servers.http_server_unittest.TestHttpServer.test_start_cmd as failing on Windows.

* Scripts/webkitpy/test/test_finder.py:
(TestFinder._default_names):

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitpy/test/test_finder.py




Diff

Modified: trunk/Tools/ChangeLog (115053 => 115054)

--- trunk/Tools/ChangeLog	2012-04-24 14:49:36 UTC (rev 115053)
+++ trunk/Tools/ChangeLog	2012-04-24 14:51:57 UTC (rev 115054)
@@ -1,3 +1,13 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84726
+
+Mark webkitpy.layout_tests.servers.http_server_unittest.TestHttpServer.test_start_cmd as failing on Windows.
+
+* Scripts/webkitpy/test/test_finder.py:
+(TestFinder._default_names):
+
 2012-04-24  Christophe Dumez  christophe.du...@intel.com
 
 [EFL] Enable Web Timing


Modified: trunk/Tools/Scripts/webkitpy/test/test_finder.py (115053 => 115054)

--- trunk/Tools/Scripts/webkitpy/test/test_finder.py	2012-04-24 14:49:36 UTC (rev 115053)
+++ trunk/Tools/Scripts/webkitpy/test/test_finder.py	2012-04-24 14:51:57 UTC (rev 115054)
@@ -166,6 +166,9 @@
'webkitpy.tool')
 self._exclude(modules, win32_blacklist, 'fail horribly on win32', 54526)
 
+win32_blacklist_84726 = ('webkitpy.layout_tests.servers.http_server_unittest.TestHttpServer.test_start_cmd')
+self._exclude(modules, win32_blacklist_84726, 'fails on win32', 84726)
+
 return modules
 
 def _exclude(self, modules, module_prefixes, reason, bugid):






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115062] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115062] trunk/LayoutTests








Revision 115062
Author mnaga...@chromium.org
Date 2012-04-24 08:35:34 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.

The following tests have been marked as crashing in debug mode only:

http/tests/websocket/tests/hixie76/workers/close-in-onmessage-crash.html
http/tests/websocket/tests/hixie76/workers/close-in-worker.html
http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html
http/tests/websocket/tests/hixie76/workers/worker-simple.html
media/media-controller-playback.html
media/track/track-cues-missed.html
media/track/track-cues-pause-on-exit.html
media/track/track-cues-sorted-before-dispatch.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115061 => 115062)

--- trunk/LayoutTests/ChangeLog	2012-04-24 15:29:22 UTC (rev 115061)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 15:35:34 UTC (rev 115062)
@@ -1,3 +1,20 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+
+The following tests have been marked as crashing in debug mode only:
+
+http/tests/websocket/tests/hixie76/workers/close-in-onmessage-crash.html
+http/tests/websocket/tests/hixie76/workers/close-in-worker.html
+http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html
+http/tests/websocket/tests/hixie76/workers/worker-simple.html
+media/media-controller-playback.html
+media/track/track-cues-missed.html
+media/track/track-cues-pause-on-exit.html
+media/track/track-cues-sorted-before-dispatch.html
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Carlos Garcia Campos  cgar...@igalia.com
 
 [GTK] Should pass canvas/philip/tests/toDataURL.jpeg.alpha.html


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115061 => 115062)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 15:29:22 UTC (rev 115061)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 15:35:34 UTC (rev 115062)
@@ -3669,10 +3669,10 @@
 BUGWK83912 : ietestcenter/css3/grid/grid-items-002.htm = IMAGE
 BUGWK83913 : ietestcenter/css3/grid/grid-items-003.htm = IMAGE
 
-BUGWK84125 : http/tests/websocket/tests/hixie76/workers/close-in-onmessage-crash.html = CRASH
-BUGWK84125 : http/tests/websocket/tests/hixie76/workers/close-in-worker.html = CRASH
-BUGWK84125 : http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html = CRASH
-BUGWK84125 : http/tests/websocket/tests/hixie76/workers/worker-simple.html = CRASH
+BUGWK84125 DEBUG : http/tests/websocket/tests/hixie76/workers/close-in-onmessage-crash.html = CRASH
+BUGWK84125 DEBUG : http/tests/websocket/tests/hixie76/workers/close-in-worker.html = CRASH
+BUGWK84125 DEBUG : http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html = CRASH
+BUGWK84125 DEBUG : http/tests/websocket/tests/hixie76/workers/worker-simple.html = CRASH
 
 BUGWK84427 LINUX DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = TIMEOUT
 BUGWK84427 MAC WIN DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = PASS TIMEOUT
@@ -3691,10 +3691,10 @@
 
 BUGCR124777 : media/video-colorspace-yuv422.html = IMAGE+TEXT TIMEOUT
 
-BUGCR124779 : media/media-controller-playback.html = CRASH
-BUGCR124779 : media/track/track-cues-missed.html = CRASH
-BUGCR124779 : media/track/track-cues-pause-on-exit.html = CRASH
-BUGCR124779 : media/track/track-cues-sorted-before-dispatch.html = CRASH
+BUGCR124779 DEBUG : media/media-controller-playback.html = CRASH
+BUGCR124779 DEBUG : media/track/track-cues-missed.html = CRASH
+BUGCR124779 DEBUG : media/track/track-cues-pause-on-exit.html = CRASH
+BUGCR124779 DEBUG : media/track/track-cues-sorted-before-dispatch.html = CRASH
 
 // Uncomment after CR124779 is resolved (if the test is still flaky)
 // BUGWK80067 DEBUG : media/track/track-cues-pause-on-exit.html = PASS TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115072] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115072] trunk/LayoutTests








Revision 115072
Author mnaga...@chromium.org
Date 2012-04-24 09:31:40 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84733

Mark fast/canvas/canvas-composite.html as flaky on Vista.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115071 => 115072)

--- trunk/LayoutTests/ChangeLog	2012-04-24 16:28:20 UTC (rev 115071)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 16:31:40 UTC (rev 115072)
@@ -1,3 +1,12 @@
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84733
+
+Mark fast/canvas/canvas-composite.html as flaky on Vista.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-24  Philippe Normand  pnorm...@igalia.com
 
 Unreviewed, GTK test_expectations update.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115071 => 115072)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 16:28:20 UTC (rev 115071)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 16:31:40 UTC (rev 115072)
@@ -3718,3 +3718,5 @@
 BUGWK84720 DEBUG: fast/repaint/fixed-right-in-page-scale.html = IMAGE PASS
 
 BUGWK84724 SNOWLEOPARD: platform/chromium/media/video-frame-size-change.html = IMAGE PASS
+
+BUGWK84733 VISTA : fast/canvas/canvas-composite.html = TIMEOUT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [115076] trunk/LayoutTests

2012-04-24 Thread mnaganov
Title: [115076] trunk/LayoutTests








Revision 115076
Author mnaga...@chromium.org
Date 2012-04-24 09:51:33 -0700 (Tue, 24 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84735

Mark http/tests/inspector/change-iframe-src.html as flaky on Windows

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (115075 => 115076)

--- trunk/LayoutTests/ChangeLog	2012-04-24 16:48:18 UTC (rev 115075)
+++ trunk/LayoutTests/ChangeLog	2012-04-24 16:51:33 UTC (rev 115076)
@@ -1,6 +1,15 @@
 2012-04-24  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84735
+
+Mark http/tests/inspector/change-iframe-src.html as flaky on Windows
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-24  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=84733
 
 Mark fast/canvas/canvas-composite.html as flaky on Vista.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (115075 => 115076)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 16:48:18 UTC (rev 115075)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-24 16:51:33 UTC (rev 115076)
@@ -3720,3 +3720,5 @@
 BUGWK84724 SNOWLEOPARD: platform/chromium/media/video-frame-size-change.html = IMAGE PASS
 
 BUGWK84733 VISTA : fast/canvas/canvas-composite.html = TIMEOUT PASS
+
+BUGWK84735 WIN : http/tests/inspector/change-iframe-src.html = TIMEOUT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114884] trunk/LayoutTests

2012-04-23 Thread mnaganov
Title: [114884] trunk/LayoutTests








Revision 114884
Author mnaga...@chromium.org
Date 2012-04-23 03:38:00 -0700 (Mon, 23 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.

Unmark fast/regex/unicodeCaseInsensitive.html -- the bug has been
fixed long ago, and the test is passing now.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114883 => 114884)

--- trunk/LayoutTests/ChangeLog	2012-04-23 10:17:23 UTC (rev 114883)
+++ trunk/LayoutTests/ChangeLog	2012-04-23 10:38:00 UTC (rev 114884)
@@ -1,3 +1,12 @@
+2012-04-23  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+
+Unmark fast/regex/unicodeCaseInsensitive.html -- the bug has been
+fixed long ago, and the test is passing now.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-23  Kent Tamura  tk...@chromium.org
 
 Add test function to get placeholder string


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114883 => 114884)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 10:17:23 UTC (rev 114883)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 10:38:00 UTC (rev 114884)
@@ -3576,8 +3576,6 @@
 BUGWK82297 SNOWLEOPARD : fast/events/platform-wheelevent-paging-y-in-scrolling-page.html = TEXT PASS
 BUGWK82297 SNOWLEOPARD : fast/events/scrollbar-double-click.html = TEXT PASS
 
-BUGCR120356 : fast/regex/unicodeCaseInsensitive.html = TEXT
-
 BUGWK82300 SNOWLEOPARD : compositing/images/direct-pdf-image.html = IMAGE
 
 // this test appears to consistently fail during the main run but usually passes on a retry.






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114888] trunk/LayoutTests

2012-04-23 Thread mnaganov
Title: [114888] trunk/LayoutTests








Revision 114888
Author mnaga...@chromium.org
Date 2012-04-23 05:15:43 -0700 (Mon, 23 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
http://crbug.com/23494

Unmark css2.1/t1503-c522-font-family-00-b.html on Leopard.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114887 => 114888)

--- trunk/LayoutTests/ChangeLog	2012-04-23 11:34:27 UTC (rev 114887)
+++ trunk/LayoutTests/ChangeLog	2012-04-23 12:15:43 UTC (rev 114888)
@@ -1,7 +1,16 @@
 2012-04-23  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+http://crbug.com/23494
 
+Unmark css2.1/t1503-c522-font-family-00-b.html on Leopard.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-23  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+
 Unmark fast/regex/unicodeCaseInsensitive.html -- the bug has been
 fixed long ago, and the test is passing now.
 


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114887 => 114888)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 11:34:27 UTC (rev 114887)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 12:15:43 UTC (rev 114888)
@@ -1490,7 +1490,6 @@
 BUGCR10364 MAC : http/tests/navigation/reload-subframe-object.html = FAIL
 
 // Text declared as monospace with no size is bigger in Chromium
-BUGCR23494 LEOPARD : css2.1/t1503-c522-font-family-00-b.html = IMAGE
 BUGCR23494 LEOPARD : fast/text/monospace-width-cache.html = IMAGE
 
 // Actual is just slightly off in color than expected






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114889] trunk/LayoutTests

2012-04-23 Thread mnaganov
Title: [114889] trunk/LayoutTests








Revision 114889
Author mnaga...@chromium.org
Date 2012-04-23 05:37:50 -0700 (Mon, 23 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=70765

Unmark fast/forms/listbox-clip.html on Windows

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114888 => 114889)

--- trunk/LayoutTests/ChangeLog	2012-04-23 12:15:43 UTC (rev 114888)
+++ trunk/LayoutTests/ChangeLog	2012-04-23 12:37:50 UTC (rev 114889)
@@ -1,6 +1,15 @@
 2012-04-23  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=70765
+
+Unmark fast/forms/listbox-clip.html on Windows
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-23  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 http://crbug.com/23494
 
 Unmark css2.1/t1503-c522-font-family-00-b.html on Leopard.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114888 => 114889)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 12:15:43 UTC (rev 114888)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 12:37:50 UTC (rev 114889)
@@ -1913,8 +1913,6 @@
 // They should be moved to the _javascript_Core test suite.
 BUGCR42875 SKIP WONTFIX : sputnik = TEXT
 
-BUGWK70765 WIN : fast/forms/listbox-clip.html = IMAGE IMAGE+TEXT
-
 // WebKit roll 58791:58807
 BUGCR43319 LINUX DEBUG : fast/forms/select-empty-option-height.html = PASS TIMEOUT
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114891] trunk/Source/WebKit/chromium

2012-04-23 Thread mnaganov
Title: [114891] trunk/Source/WebKit/chromium








Revision 114891
Author mnaga...@chromium.org
Date 2012-04-23 06:15:09 -0700 (Mon, 23 Apr 2012)


Log Message
Chromium roll from r133348 to r133422.

* DEPS:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/DEPS




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (114890 => 114891)

--- trunk/Source/WebKit/chromium/ChangeLog	2012-04-23 12:53:24 UTC (rev 114890)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-04-23 13:15:09 UTC (rev 114891)
@@ -1,3 +1,9 @@
+2012-04-23  Mikhail Naganov  mnaga...@chromium.org
+
+Chromium roll from r133348 to r133422.
+
+* DEPS:
+
 2012-04-23  Gavin Peters  gav...@chromium.org
 
 Move ReferrerPolicy out of SecurityPolicy class into its own header in platform.


Modified: trunk/Source/WebKit/chromium/DEPS (114890 => 114891)

--- trunk/Source/WebKit/chromium/DEPS	2012-04-23 12:53:24 UTC (rev 114890)
+++ trunk/Source/WebKit/chromium/DEPS	2012-04-23 13:15:09 UTC (rev 114891)
@@ -32,7 +32,7 @@
 
 vars = {
   'chromium_svn': 'http://src.chromium.org/svn/trunk/src',
-  'chromium_rev': '133348'
+  'chromium_rev': '133422'
 }
 
 deps = {






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114893] trunk/LayoutTests

2012-04-23 Thread mnaganov
Title: [114893] trunk/LayoutTests








Revision 114893
Author mnaga...@chromium.org
Date 2012-04-23 06:39:24 -0700 (Mon, 23 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
http://webkit.org/b/72402

Unmark compositing/layer-creation/overflow-scroll-overlap.html as failing

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114892 => 114893)

--- trunk/LayoutTests/ChangeLog	2012-04-23 13:26:20 UTC (rev 114892)
+++ trunk/LayoutTests/ChangeLog	2012-04-23 13:39:24 UTC (rev 114893)
@@ -1,3 +1,12 @@
+2012-04-23  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+http://webkit.org/b/72402
+
+Unmark compositing/layer-creation/overflow-scroll-overlap.html as failing
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-23  Pavel Feldman  pfeld...@chromium.org
 
 Web Inspector: Rename and extract UISourceCodeImpl into _javascript_Source


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114892 => 114893)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 13:26:20 UTC (rev 114892)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 13:39:24 UTC (rev 114893)
@@ -849,9 +849,6 @@
 BUGCR8941 SLOW WIN : http/tests/xmlhttprequest/web-apps/013.html = FAIL
 BUGCR8941 WIN : http/tests/xmlhttprequest/web-apps/012.html = FAIL
 
-// Has a 150ms setTimeout and seems racy
-BUGWK72402 DEBUG : compositing/layer-creation/overflow-scroll-overlap.html = TEXT
-
 // Incrorect results, in incorrect international font metrics.
 BUGCR20521 WIN : fast/text/atsui-multiple-renderers.html = IMAGE+TEXT
 BUGWK78544 LINUX : fast/text/atsui-multiple-renderers.html = PASS IMAGE IMAGE+TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114896] trunk/LayoutTests

2012-04-23 Thread mnaganov
Title: [114896] trunk/LayoutTests








Revision 114896
Author mnaga...@chromium.org
Date 2012-04-23 07:35:13 -0700 (Mon, 23 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84596

Mark media/encrypted-media/encrypted-media-events.html as flaky.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114895 => 114896)

--- trunk/LayoutTests/ChangeLog	2012-04-23 14:26:55 UTC (rev 114895)
+++ trunk/LayoutTests/ChangeLog	2012-04-23 14:35:13 UTC (rev 114896)
@@ -1,3 +1,12 @@
+2012-04-23  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84596
+
+Mark media/encrypted-media/encrypted-media-events.html as flaky.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-23  Alexis Menard  alexis.men...@openbossa.org
 
 Simplify CSSParser::parseFont.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114895 => 114896)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 14:26:55 UTC (rev 114895)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-23 14:35:13 UTC (rev 114896)
@@ -3688,3 +3688,5 @@
 BUGCR124313 XP DEBUG : fast/css/font-face-woff.html = CRASH
 
 BUGWK84550 SNOWLEOPARD : fast/canvas/2d.text.draw.fill.maxWidth.gradient.html = TEXT PASS
+
+BUGWK84596 : media/encrypted-media/encrypted-media-events.html = PASS CRASH






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114859] trunk/LayoutTests

2012-04-22 Thread mnaganov
Title: [114859] trunk/LayoutTests








Revision 114859
Author mnaga...@chromium.org
Date 2012-04-22 14:06:58 -0700 (Sun, 22 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.

css3/zoom-coords-expected.txt now passes on Mac
According to bot logs this is after http://trac.webkit.org/changeset/114813

* platform/chromium-mac/css3/zoom-coords-expected.txt: Added.

Modified Paths

trunk/LayoutTests/ChangeLog


Added Paths

trunk/LayoutTests/platform/chromium-mac/css3/zoom-coords-expected.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114858 => 114859)

--- trunk/LayoutTests/ChangeLog	2012-04-22 20:22:24 UTC (rev 114858)
+++ trunk/LayoutTests/ChangeLog	2012-04-22 21:06:58 UTC (rev 114859)
@@ -1,3 +1,12 @@
+2012-04-22  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+
+css3/zoom-coords-expected.txt now passes on Mac
+According to bot logs this is after http://trac.webkit.org/changeset/114813
+
+* platform/chromium-mac/css3/zoom-coords-expected.txt: Added.
+
 2012-04-21  Zan Dobersek  zandober...@gmail.com
 
 Unreviewed - move some expectations added in r114839 to their proper location.


Added: trunk/LayoutTests/platform/chromium-mac/css3/zoom-coords-expected.txt (0 => 114859)

--- trunk/LayoutTests/platform/chromium-mac/css3/zoom-coords-expected.txt	(rev 0)
+++ trunk/LayoutTests/platform/chromium-mac/css3/zoom-coords-expected.txt	2012-04-22 21:06:58 UTC (rev 114859)
@@ -0,0 +1,115 @@
+Test
+Test
+Test
+This test checks getBoundingClientRect() on zoomed HTML and SVG elements
+
+On success, you will see a series of PASS messages, followed by TEST COMPLETE.
+
+Gray rectangles: 100x50
+Green rectangles: 100x50, zoom=200%
+Blue rectangles: 200x100, zoom=50%
+
+Checking HTML elements:
+
+PASS div1.left is 0
+PASS div1.top is 0
+PASS div1.width is 100
+PASS div1.height is 50
+PASS div1.right is 100
+PASS div1.bottom is 50
+
+PASS div2.left is 0
+PASS div2.top is 25
+PASS div2.width is 100
+PASS div2.height is 50
+PASS div2.right is 100
+PASS div2.bottom is 75
+
+PASS div3.left is 0
+PASS div3.top is 300
+PASS div3.width is 200
+PASS div3.height is 100
+PASS div3.right is 200
+PASS div3.bottom is 400
+
+Checking SVG elements:
+
+PASS svg1.left is 0
+PASS svg1.top is 250
+PASS svg1.width is 150
+PASS svg1.height is 50
+PASS svg1.right is 150
+PASS svg1.bottom is 300
+PASS rect1.left is 0
+PASS rect1.top is 250
+PASS rect1.width is 100
+PASS rect1.height is 50
+PASS rect1.right is 100
+PASS rect1.bottom is 300
+PASS image1.left is 100
+PASS image1.top is 250
+PASS image1.width is 50
+PASS image1.height is 25
+PASS image1.right is 150
+PASS image1.bottom is 275
+PASS text1.left is 100
+PASS text1.top is 282.5
+PASS text1.width is 46
+PASS text1.height is 6.5
+PASS text1.right is 146
+PASS text1.bottom is 289
+
+PASS svg2.left is 75
+PASS svg2.top is 100
+PASS svg2.width is 150
+PASS svg2.height is 50
+PASS svg2.right is 225
+PASS svg2.bottom is 150
+PASS rect2.left is 75
+PASS rect2.top is 100
+PASS rect2.width is 100
+PASS rect2.height is 50
+PASS rect2.right is 175
+PASS rect2.bottom is 150
+PASS image2.left is 175
+PASS image2.top is 100
+PASS image2.width is 50
+PASS image2.height is 25
+PASS image2.right is 225
+PASS image2.bottom is 125
+PASS text2.left is 175
+PASS text2.top is 132.5
+PASS text2.width is 49
+PASS text2.height is 6.5
+PASS text2.right is 224
+PASS text2.bottom is 139
+
+PASS svg3.left is 900
+PASS svg3.top is 500
+PASS svg3.width is 300
+PASS svg3.height is 100
+PASS svg3.right is 1200
+PASS svg3.bottom is 600
+PASS rect3.left is 900
+PASS rect3.top is 500
+PASS rect3.width is 200
+PASS rect3.height is 100
+PASS rect3.right is 1100
+PASS rect3.bottom is 600
+PASS image3.left is 1100
+PASS image3.top is 500
+PASS image3.width is 100
+PASS image3.height is 50
+PASS image3.right is 1200
+PASS image3.bottom is 550
+PASS text3.left is 1100
+PASS text3.top is 565
+PASS text3.width is 92
+PASS text3.height is 13
+PASS text3.right is 1192
+PASS text3.bottom is 578
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
Property changes on: trunk/LayoutTests/platform/chromium-mac/css3/zoom-coords-expected.txt
___


Added: svn:eol-style




___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114860] trunk/LayoutTests

2012-04-22 Thread mnaganov
Title: [114860] trunk/LayoutTests








Revision 114860
Author mnaga...@chromium.org
Date 2012-04-22 14:17:20 -0700 (Sun, 22 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.

fast/workers/storage/interrupt-database.html can also TIMEOUT in debug.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114859 => 114860)

--- trunk/LayoutTests/ChangeLog	2012-04-22 21:06:58 UTC (rev 114859)
+++ trunk/LayoutTests/ChangeLog	2012-04-22 21:17:20 UTC (rev 114860)
@@ -2,6 +2,14 @@
 
 [Chromium] Unreviewed test expectations update.
 
+fast/workers/storage/interrupt-database.html can also TIMEOUT in debug.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-22  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+
 css3/zoom-coords-expected.txt now passes on Mac
 According to bot logs this is after http://trac.webkit.org/changeset/114813
 


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114859 => 114860)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-22 21:06:58 UTC (rev 114859)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-22 21:17:20 UTC (rev 114860)
@@ -3156,7 +3156,7 @@
 BUGWK78725 : http/tests/filesystem/workers/resolve-url.html = PASS TIMEOUT
 
 BUGWK75111 : fast/workers/storage/use-same-database-in-page-and-workers.html = PASS TEXT TIMEOUT
-BUGWK77136 DEBUG : fast/workers/storage/interrupt-database.html = PASS CRASH
+BUGWK77136 DEBUG : fast/workers/storage/interrupt-database.html = PASS CRASH TIMEOUT
 BUGWK77136 WIN RELEASE : fast/workers/storage/interrupt-database.html = PASS TIMEOUT
 
 BUGWK75161 : media/video-poster-blocked-by-willsendrequest.html = TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114862] trunk/Source/WebKit/chromium

2012-04-22 Thread mnaganov
Title: [114862] trunk/Source/WebKit/chromium








Revision 114862
Author mnaga...@chromium.org
Date 2012-04-22 15:27:18 -0700 (Sun, 22 Apr 2012)


Log Message
[Chromium] Fix clang build after r114827, unreviewed.

* tests/LayerTextureUpdaterTest.cpp:
(WebCore::TEST):

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/tests/LayerTextureUpdaterTest.cpp




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (114861 => 114862)

--- trunk/Source/WebKit/chromium/ChangeLog	2012-04-22 21:27:38 UTC (rev 114861)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-04-22 22:27:18 UTC (rev 114862)
@@ -1,3 +1,10 @@
+2012-04-22  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Fix clang build after r114827, unreviewed.
+
+* tests/LayerTextureUpdaterTest.cpp:
+(WebCore::TEST):
+
 2012-04-22  Shawn Singh  shawnsi...@chromium.org
 
 [chromium] Damage Tracker needs to use CCMathUtil transforms


Modified: trunk/Source/WebKit/chromium/tests/LayerTextureUpdaterTest.cpp (114861 => 114862)

--- trunk/Source/WebKit/chromium/tests/LayerTextureUpdaterTest.cpp	2012-04-22 21:27:38 UTC (rev 114861)
+++ trunk/Source/WebKit/chromium/tests/LayerTextureUpdaterTest.cpp	2012-04-22 22:27:18 UTC (rev 114862)
@@ -220,7 +220,7 @@
 {
 IntRect partialRect(100, 200, 50, 75);
 PaintFillPartialOpaque fillPartial(partialRect);
-OwnPtrTestLayerPainterChromium painter = adoptPtr(new TestLayerPainterChromium(fillPartial));
+OwnPtrTestLayerPainterChromium painter(adoptPtr(new TestLayerPainterChromium(fillPartial)));
 RefPtrLayerTextureUpdater updater = BitmapCanvasLayerTextureUpdater::create(painter.release(), false);
 
 IntRect opaqueRect;
@@ -233,7 +233,7 @@
 IntRect partialRect(100, 200, 50, 75);
 PaintFillPartialOpaque fillPartial(partialRect);
 
-OwnPtrTestLayerPainterChromium painter = adoptPtr(new TestLayerPainterChromium(fillPartial));
+OwnPtrTestLayerPainterChromium painter(adoptPtr(new TestLayerPainterChromium(fillPartial)));
 RefPtrLayerTextureUpdater updater = BitmapCanvasLayerTextureUpdater::create(painter.release(), false);
 
 IntRect opaqueRect;
@@ -249,7 +249,7 @@
 IntRect partialRect(9, 20, 50, 75);
 IntRect partialDeviceRect(partialRect);
 PaintFillPartialOpaque fillPartial(partialDeviceRect);
-OwnPtrTestLayerPainterChromium painter = adoptPtr(new TestLayerPainterChromium(fillPartial));
+OwnPtrTestLayerPainterChromium painter(adoptPtr(new TestLayerPainterChromium(fillPartial)));
 RefPtrLayerTextureUpdater updater = BitmapCanvasLayerTextureUpdater::create(painter.release(), false);
 
 IntRect opaqueRect;






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114723] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114723] trunk/LayoutTests








Revision 114723
Author mnaga...@chromium.org
Date 2012-04-20 00:33:05 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84427

Mark platform/chromium/editing/spelling/delete-misspelled-word.html as
timing out on Linux debug.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114722 => 114723)

--- trunk/LayoutTests/ChangeLog	2012-04-20 07:27:27 UTC (rev 114722)
+++ trunk/LayoutTests/ChangeLog	2012-04-20 07:33:05 UTC (rev 114723)
@@ -1,3 +1,13 @@
+2012-04-20  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84427
+
+Mark platform/chromium/editing/spelling/delete-misspelled-word.html as
+timing out on Linux debug.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-20  Kamil Blank  k.bl...@samsung.com
 
 [EFL] Add setting API for author and user styles.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114722 => 114723)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 07:27:27 UTC (rev 114722)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 07:33:05 UTC (rev 114723)
@@ -3724,3 +3724,5 @@
 BUGWK84125 : http/tests/websocket/tests/hixie76/workers/close-in-worker.html = CRASH
 BUGWK84125 : http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html = CRASH
 BUGWK84125 : http/tests/websocket/tests/hixie76/workers/worker-simple.html = CRASH
+
+BUGWK84427 LINUX DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = TIMEOUT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114726] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114726] trunk/LayoutTests








Revision 114726
Author mnaga...@chromium.org
Date 2012-04-20 00:50:54 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test results update.

Remove unneeded test results.

* platform/chromium-win-xp/fast/ruby/floating-ruby-text-expected.txt: Removed.
* platform/chromium-win-xp/fast/ruby/positioned-ruby-text-expected.txt: Removed.
* platform/chromium/fast/ruby/floating-ruby-text-expected.txt: Removed.
* platform/chromium/fast/ruby/positioned-ruby-text-expected.txt: Removed.

Modified Paths

trunk/LayoutTests/ChangeLog


Removed Paths

trunk/LayoutTests/platform/chromium/fast/ruby/floating-ruby-text-expected.txt
trunk/LayoutTests/platform/chromium/fast/ruby/positioned-ruby-text-expected.txt
trunk/LayoutTests/platform/chromium-win-xp/fast/ruby/floating-ruby-text-expected.txt
trunk/LayoutTests/platform/chromium-win-xp/fast/ruby/positioned-ruby-text-expected.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114725 => 114726)

--- trunk/LayoutTests/ChangeLog	2012-04-20 07:42:27 UTC (rev 114725)
+++ trunk/LayoutTests/ChangeLog	2012-04-20 07:50:54 UTC (rev 114726)
@@ -1,3 +1,14 @@
+2012-04-20  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test results update.
+
+Remove unneeded test results.
+
+* platform/chromium-win-xp/fast/ruby/floating-ruby-text-expected.txt: Removed.
+* platform/chromium-win-xp/fast/ruby/positioned-ruby-text-expected.txt: Removed.
+* platform/chromium/fast/ruby/floating-ruby-text-expected.txt: Removed.
+* platform/chromium/fast/ruby/positioned-ruby-text-expected.txt: Removed.
+
 2012-04-20  Taiju Tsuiki  t...@chromium.org
 
 DOMFileSystem::scheduleCallback() crashes on file() call after reload.


Deleted: trunk/LayoutTests/platform/chromium/fast/ruby/floating-ruby-text-expected.txt (114725 => 114726)

--- trunk/LayoutTests/platform/chromium/fast/ruby/floating-ruby-text-expected.txt	2012-04-20 07:42:27 UTC (rev 114725)
+++ trunk/LayoutTests/platform/chromium/fast/ruby/floating-ruby-text-expected.txt	2012-04-20 07:50:54 UTC (rev 114726)
@@ -1,15 +0,0 @@
-layer at (0,0) size 800x600
-  RenderView at (0,0) size 800x600
-layer at (0,0) size 800x41
-  RenderBlock {HTML} at (0,0) size 800x41 [color=#FF]
-RenderBody {BODY} at (8,8) size 784x25
-  RenderRuby (inline) {RUBY} at (0,0) size 784x10
-RenderRubyRun (anonymous) at (0,5) size 784x20
-  RenderRubyText {RT} at (0,-5) size 784x5
-RenderText {#text} at (372,0) size 40x5
-  text run at (372,0) width 40: rubytext
-  RenderRubyBase (anonymous) at (0,0) size 784x20
-RenderText {#text} at (0,0) size 784x20
-  text run at (0,0) width 784: Attempt to create a floating ruby text element. Float is not supported for
-  text run at (0,10) width 784: ruby text, which should be apparent from the resulting render tree.
-  RenderText {#text} at (0,0) size 0x0


Deleted: trunk/LayoutTests/platform/chromium/fast/ruby/positioned-ruby-text-expected.txt (114725 => 114726)

--- trunk/LayoutTests/platform/chromium/fast/ruby/positioned-ruby-text-expected.txt	2012-04-20 07:42:27 UTC (rev 114725)
+++ trunk/LayoutTests/platform/chromium/fast/ruby/positioned-ruby-text-expected.txt	2012-04-20 07:50:54 UTC (rev 114726)
@@ -1,16 +0,0 @@
-layer at (0,0) size 800x600
-  RenderView at (0,0) size 800x600
-layer at (0,0) size 800x51
-  RenderBlock {HTML} at (0,0) size 800x51 [color=#FF]
-RenderBody {BODY} at (8,8) size 784x35
-  RenderRuby (inline) {RUBY} at (0,0) size 784x10
-RenderRubyRun (anonymous) at (0,5) size 784x30
-  RenderRubyText {RT} at (0,-5) size 784x5
-RenderText {#text} at (372,0) size 40x5
-  text run at (372,0) width 40: rubytext
-  RenderRubyBase (anonymous) at (0,0) size 784x30
-RenderText {#text} at (0,0) size 784x30
-  text run at (0,0) width 784: Attempt to create a positioned ruby text element. Non-static position is not
-  text run at (0,10) width 784: supported for ruby text, which should be apparent from the resulting render
-  text run at (0,20) width 50: tree.
-  RenderText {#text} at (0,0) size 0x0


Deleted: trunk/LayoutTests/platform/chromium-win-xp/fast/ruby/floating-ruby-text-expected.txt (114725 => 114726)

--- trunk/LayoutTests/platform/chromium-win-xp/fast/ruby/floating-ruby-text-expected.txt	2012-04-20 07:42:27 UTC (rev 114725)
+++ trunk/LayoutTests/platform/chromium-win-xp/fast/ruby/floating-ruby-text-expected.txt	2012-04-20 07:50:54 UTC (rev 114726)
@@ -1,15 +0,0 @@
-layer at (0,0) size 800x600
-  RenderView at (0,0) size 800x600
-layer at (0,0) size 800x44
-  RenderBlock {HTML} at (0,0) size 800x44
-RenderBody {BODY} at (8,8) size 784x28
-  RenderRuby (inline) {RUBY} at (0,0) size 784x10 [color=#FF]
-RenderRubyRun (anonymous) at (0,5) size 784x20
-  RenderRubyText {RT} at 

[webkit-changes] [114735] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114735] trunk/LayoutTests








Revision 114735
Author mnaga...@chromium.org
Date 2012-04-20 03:28:14 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84427

Mark platform/chromium/editing/spelling/delete-misspelled-word.html as
PASS/TIMEOUT on Mac and Win debug.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114734 => 114735)

--- trunk/LayoutTests/ChangeLog	2012-04-20 10:02:33 UTC (rev 114734)
+++ trunk/LayoutTests/ChangeLog	2012-04-20 10:28:14 UTC (rev 114735)
@@ -1,3 +1,13 @@
+2012-04-20  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84427
+
+Mark platform/chromium/editing/spelling/delete-misspelled-word.html as
+PASS/TIMEOUT on Mac and Win debug.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-20  'Pavel Feldman'  pfeld...@chromium.org
 
 Not reviewed: fixed chromium sanity tests for inspector via assigning last path component


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114734 => 114735)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 10:02:33 UTC (rev 114734)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 10:28:14 UTC (rev 114735)
@@ -3726,3 +3726,4 @@
 BUGWK84125 : http/tests/websocket/tests/hixie76/workers/worker-simple.html = CRASH
 
 BUGWK84427 LINUX DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = TIMEOUT
+BUGWK84427 MAC WIN DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = PASS TIMEOUT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114738] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114738] trunk/LayoutTests








Revision 114738
Author mnaga...@chromium.org
Date 2012-04-20 04:48:06 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=84432

Mark several fast/filesystem tests as failing on Windows.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114737 => 114738)

--- trunk/LayoutTests/ChangeLog	2012-04-20 10:56:43 UTC (rev 114737)
+++ trunk/LayoutTests/ChangeLog	2012-04-20 11:48:06 UTC (rev 114738)
@@ -1,3 +1,12 @@
+2012-04-20  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=84432
+
+Mark several fast/filesystem tests as failing on Windows.
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-20  Sudarsana Nagineni  sudarsana.nagin...@linux.intel.com
 
 [EFL] [DRT] Send double click event from EventSender


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114737 => 114738)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 10:56:43 UTC (rev 114737)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 11:48:06 UTC (rev 114738)
@@ -3727,3 +3727,8 @@
 
 BUGWK84427 LINUX DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = TIMEOUT
 BUGWK84427 MAC WIN DEBUG : platform/chromium/editing/spelling/delete-misspelled-word.html = PASS TIMEOUT
+
+BUGWK84432 WIN : fast/filesystem/op-restricted-names.html = TEXT
+BUGWK84432 WIN : fast/filesystem/op-restricted-unicode.html = TEXT
+BUGWK84432 WIN : fast/filesystem/read-directory.html = TEXT
+BUGWK84432 WIN : fast/filesystem/simple-readonly-file-object.html = TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114739] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114739] trunk/LayoutTests








Revision 114739
Author mnaga...@chromium.org
Date 2012-04-20 04:57:56 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
http://code.google.com/p/chromium/issues/detail?id=124313

Mark fast/css/font-face-opentype.html and fast/css/font-face-woff.html
as crashing on Debug XP.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114738 => 114739)

--- trunk/LayoutTests/ChangeLog	2012-04-20 11:48:06 UTC (rev 114738)
+++ trunk/LayoutTests/ChangeLog	2012-04-20 11:57:56 UTC (rev 114739)
@@ -1,6 +1,16 @@
 2012-04-20  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+http://code.google.com/p/chromium/issues/detail?id=124313
+
+Mark fast/css/font-face-opentype.html and fast/css/font-face-woff.html
+as crashing on Debug XP.
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-20  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=84432
 
 Mark several fast/filesystem tests as failing on Windows.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114738 => 114739)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 11:48:06 UTC (rev 114738)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 11:57:56 UTC (rev 114739)
@@ -3732,3 +3732,6 @@
 BUGWK84432 WIN : fast/filesystem/op-restricted-unicode.html = TEXT
 BUGWK84432 WIN : fast/filesystem/read-directory.html = TEXT
 BUGWK84432 WIN : fast/filesystem/simple-readonly-file-object.html = TEXT
+
+BUGCR124313 XP DEBUG : fast/css/font-face-opentype.html = CRASH
+BUGCR124313 XP DEBUG : fast/css/font-face-woff.html = CRASH






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114741] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114741] trunk/LayoutTests








Revision 114741
Author mnaga...@chromium.org
Date 2012-04-20 05:07:25 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=83826

Remove now passing test from expectations:
  fast/text/drawBidiText.html
  fast/text/international/bidi-listbox-atsui.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114740 => 114741)

--- trunk/LayoutTests/ChangeLog	2012-04-20 11:58:21 UTC (rev 114740)
+++ trunk/LayoutTests/ChangeLog	2012-04-20 12:07:25 UTC (rev 114741)
@@ -1,6 +1,17 @@
 2012-04-20  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=83826
+
+Remove now passing test from expectations:
+  fast/text/drawBidiText.html
+  fast/text/international/bidi-listbox-atsui.html
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-20  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 http://code.google.com/p/chromium/issues/detail?id=124313
 
 Mark fast/css/font-face-opentype.html and fast/css/font-face-woff.html


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114740 => 114741)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 11:58:21 UTC (rev 114740)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 12:07:25 UTC (rev 114741)
@@ -3700,9 +3700,6 @@
 
 BUGWK83647 WIN LINUX : fast/multicol/cell-shrinkback.html = IMAGE
 
-BUGWK83826 : fast/text/drawBidiText.html = IMAGE
-BUGWK83826 : fast/text/international/bidi-listbox-atsui.html = IMAGE
-
 BUGWK83941 : fast/canvas/2d.imageDataHD.html = TIMEOUT
 BUGWK83941 : platform/chromium/virtual/gpu/fast/canvas/2d.imageDataHD.html = TIMEOUT
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114742] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114742] trunk/LayoutTests








Revision 114742
Author mnaga...@chromium.org
Date 2012-04-20 05:30:48 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=29359

Unmark passing fast/forms/date/date-appearance.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114741 => 114742)

--- trunk/LayoutTests/ChangeLog	2012-04-20 12:07:25 UTC (rev 114741)
+++ trunk/LayoutTests/ChangeLog	2012-04-20 12:30:48 UTC (rev 114742)
@@ -1,6 +1,15 @@
 2012-04-20  Mikhail Naganov  mnaga...@chromium.org
 
 [Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=29359
+
+Unmark passing fast/forms/date/date-appearance.html
+
+* platform/chromium/test_expectations.txt:
+
+2012-04-20  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
 https://bugs.webkit.org/show_bug.cgi?id=83826
 
 Remove now passing test from expectations:


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114741 => 114742)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 12:07:25 UTC (rev 114741)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 12:30:48 UTC (rev 114742)
@@ -1103,10 +1103,7 @@
 BUGWK29359 : fast/forms/month = PASS FAIL
 BUGWK29359 : fast/forms/time = PASS FAIL
 BUGWK29359 : fast/forms/week = PASS FAIL
-// Will do rebaseline when Mac10.5 bot produces the result.
-BUGWK29359 : fast/forms/date/date-appearance.html = FAIL
 
-
 BUGCR78376 : http/tests/media/video-play-stall-seek.html = TIMEOUT
 
 // canplaythrough event is sent too early.






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114743] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114743] trunk/LayoutTests








Revision 114743
Author mnaga...@chromium.org
Date 2012-04-20 05:59:51 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test results update
http://code.google.com/p/chromium/issues/detail?id=123809

Rebaseline tests after Skia roll. There was a comment saying
Rebaseline after Skia rev. 3695 lands, while Skia is
already at r3729.

* platform/chromium-linux-x86/svg/hixie/perf/001-expected.png:
* platform/chromium-linux-x86/svg/hixie/perf/002-expected.png:
* platform/chromium-linux/fast/backgrounds/background-leakage-expected.png:
* platform/chromium-linux/fast/backgrounds/background-leakage-transforms-expected.png:
* platform/chromium-linux/fast/borders/border-radius-complex-inner-expected.png:
* platform/chromium-linux/fast/borders/borderRadiusDouble01-expected.png:
* platform/chromium-linux/fast/borders/borderRadiusDouble05-expected.png:
* platform/chromium-linux/fast/borders/borderRadiusGroove02-expected.png:
* platform/chromium-linux/fast/borders/borderRadiusRidge01-expected.png:
* platform/chromium-linux/fast/repaint/shadow-multiple-vertical-expected.png:
* platform/chromium-linux/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png:
* platform/chromium-linux/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png:
* platform/chromium-linux/svg/hixie/perf/001-expected.png:
* platform/chromium-linux/svg/hixie/perf/002-expected.png:
* platform/chromium-mac-leopard/fast/repaint/shadow-multiple-vertical-expected.png:
* platform/chromium-mac-leopard/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png:
* platform/chromium-mac-leopard/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png:
* platform/chromium-mac-leopard/svg/hixie/perf/001-expected.png:
* platform/chromium-mac-leopard/svg/hixie/perf/002-expected.png:
* platform/chromium-mac-snowleopard/fast/backgrounds/background-leakage-transforms-expected.png:
* platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.png:
* platform/chromium-mac-snowleopard/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png:
* platform/chromium-mac-snowleopard/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png:
* platform/chromium-mac-snowleopard/svg/hixie/perf/001-expected.png:
* platform/chromium-mac-snowleopard/svg/hixie/perf/002-expected.png:
* platform/chromium-mac/fast/backgrounds/background-leakage-expected.png:
* platform/chromium-mac/fast/backgrounds/background-leakage-transforms-expected.png:
* platform/chromium-mac/fast/borders/border-radius-complex-inner-expected.png:
* platform/chromium-mac/fast/borders/border-styles-split-expected.png:
* platform/chromium-mac/fast/borders/borderRadiusDouble01-expected.png:
* platform/chromium-mac/fast/borders/borderRadiusDouble02-expected.png:
* platform/chromium-mac/fast/borders/borderRadiusGroove02-expected.png:
* platform/chromium-mac/fast/borders/borderRadiusRidge01-expected.png:
* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:
* platform/chromium-mac/fast/writing-mode/border-styles-vertical-lr-expected.png:
* platform/chromium-mac/fast/writing-mode/border-styles-vertical-rl-expected.png:
* platform/chromium-mac/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png:
* platform/chromium-mac/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.txt: Removed.
* platform/chromium-mac/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png:
* platform/chromium-mac/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.txt: Removed.
* platform/chromium-mac/svg/hixie/perf/001-expected.png:
* platform/chromium-mac/svg/hixie/perf/002-expected.png:
* platform/chromium-win/fast/backgrounds/background-leakage-expected.png:
* platform/chromium-win/fast/backgrounds/background-leakage-transforms-expected.png:
* platform/chromium-win/fast/borders/border-radius-complex-inner-expected.png:
* platform/chromium-win/fast/borders/border-radius-groove-02-expected.png:
* platform/chromium-win/fast/borders/border-styles-split-expected.png:
* platform/chromium-win/fast/borders/borderRadiusDouble01-expected.png:
* platform/chromium-win/fast/borders/borderRadiusDouble02-expected.png:
* platform/chromium-win/fast/borders/borderRadiusGroove02-expected.png:
* platform/chromium-win/fast/borders/borderRadiusRidge01-expected.png:
* platform/chromium-win/fast/repaint/shadow-multiple-vertical-expected.png:
* platform/chromium-win/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png:
* platform/chromium-win/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png:
* platform/chromium-win/svg/hixie/perf/001-expected.png:
* platform/chromium-win/svg/hixie/perf/002-expected.png:
* platform/chromium/test_expectations.txt:
* 

[webkit-changes] [114745] trunk/Source/WebKit/chromium

2012-04-20 Thread mnaganov
Title: [114745] trunk/Source/WebKit/chromium








Revision 114745
Author mnaga...@chromium.org
Date 2012-04-20 07:36:21 -0700 (Fri, 20 Apr 2012)


Log Message
Unreviewed.  Rolled DEPS.

Patch by Sheriff Bot webkit.review@gmail.com on 2012-04-20

* DEPS:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/DEPS




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (114744 => 114745)

--- trunk/Source/WebKit/chromium/ChangeLog	2012-04-20 13:33:02 UTC (rev 114744)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-04-20 14:36:21 UTC (rev 114745)
@@ -1,3 +1,9 @@
+2012-04-20  Sheriff Bot  webkit.review@gmail.com
+
+Unreviewed.  Rolled DEPS.
+
+* DEPS:
+
 2012-04-20  'Pavel Feldman'  pfeld...@chromium.org
 
 Not reviewed: fixed chromium sanity tests for inspector via assigning last path component


Modified: trunk/Source/WebKit/chromium/DEPS (114744 => 114745)

--- trunk/Source/WebKit/chromium/DEPS	2012-04-20 13:33:02 UTC (rev 114744)
+++ trunk/Source/WebKit/chromium/DEPS	2012-04-20 14:36:21 UTC (rev 114745)
@@ -32,7 +32,7 @@
 
 vars = {
   'chromium_svn': 'http://src.chromium.org/svn/trunk/src',
-  'chromium_rev': '132474'
+  'chromium_rev': '133173'
 }
 
 deps = {






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [114746] trunk/LayoutTests

2012-04-20 Thread mnaganov
Title: [114746] trunk/LayoutTests








Revision 114746
Author mnaga...@chromium.org
Date 2012-04-20 07:54:25 -0700 (Fri, 20 Apr 2012)


Log Message
[Chromium] Unreviewed test expectations update
https://bugs.webkit.org/show_bug.cgi?id=73991

Unmark passing tests (Vista  Win7):
fast/text/international/complex-character-based-fallback.html
fast/text/international/danda-space.html
fast/text/international/thai-baht-space.html
fast/text/international/chromium-complex-text-non-printable.html
platform/win/fast/text/uniscribe-missing-glyph.html
fast/text/international/bidi-neutral-run.html
fast/text/international/thai-line-breaks.html

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (114745 => 114746)

--- trunk/LayoutTests/ChangeLog	2012-04-20 14:36:21 UTC (rev 114745)
+++ trunk/LayoutTests/ChangeLog	2012-04-20 14:54:25 UTC (rev 114746)
@@ -1,3 +1,19 @@
+2012-04-20  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update
+https://bugs.webkit.org/show_bug.cgi?id=73991
+
+Unmark passing tests (Vista  Win7):
+fast/text/international/complex-character-based-fallback.html
+fast/text/international/danda-space.html
+fast/text/international/thai-baht-space.html
+fast/text/international/chromium-complex-text-non-printable.html
+platform/win/fast/text/uniscribe-missing-glyph.html
+fast/text/international/bidi-neutral-run.html
+fast/text/international/thai-line-breaks.html
+
+* platform/chromium/test_expectations.txt:
+
 2012-04-20  Pavel Feldman  pfeld...@chromium.org
 
 Web Inspector: extract NavigatorView and NavigatorOverlayController from ScriptsNavigator.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (114745 => 114746)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 14:36:21 UTC (rev 114745)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-04-20 14:54:25 UTC (rev 114746)
@@ -3139,14 +3139,7 @@
 
 BUGWK73838 LEOPARD DEBUG : animations/animation-add-events-in-handler.html = CRASH
 
-BUGWK73991 WIN7 VISTA RELEASE : fast/text/international/complex-character-based-fallback.html = IMAGE+TEXT
-BUGWK73991 WIN7 VISTA RELEASE : fast/text/international/danda-space.html = IMAGE+TEXT
 BUGWK78544 LINUX : fast/text/international/danda-space.html = PASS IMAGE IMAGE+TEXT
-BUGWK73991 WIN7 VISTA RELEASE : fast/text/international/thai-baht-space.html = IMAGE+TEXT
-BUGWK73991 WIN7 VISTA RELEASE : fast/text/international/chromium-complex-text-non-printable.html = IMAGE
-BUGWK73991 WIN7 VISTA RELEASE : platform/win/fast/text/uniscribe-missing-glyph.html = IMAGE
-BUGWK73991 WIN7 VISTA RELEASE : fast/text/international/bidi-neutral-run.html = TEXT
-BUGWK73991 WIN7 VISTA RELEASE : fast/text/international/thai-line-breaks.html = TEXT
 
 BUGWK74055 LEOPARD : fast/canvas/canvas-largedraws.html = TIMEOUT
 BUGWK74055 LEOPARD : platform/chromium/virtual/gpu/fast/canvas/canvas-largedraws.html = TIMEOUT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [113050] branches/chromium/1084

2012-04-03 Thread mnaganov
Title: [113050] branches/chromium/1084








Revision 113050
Author mnaga...@chromium.org
Date 2012-04-03 10:00:19 -0700 (Tue, 03 Apr 2012)


Log Message
Revert 103073 - Scroll non-visible edit controls and caret into the center of the view when starting typing.
https://bugs.webkit.org/show_bug.cgi?id=65027

Reviewed by Ryosuke Niwa.

Tests: editing/input/caret-at-the-edge-of-contenteditable.html
   editing/input/caret-at-the-edge-of-input.html
   editing/input/reveal-caret-of-multiline-contenteditable.html
   editing/input/reveal-caret-of-multiline-input.html
   editing/input/reveal-contenteditable-on-input-vertically.html
   editing/input/reveal-contenteditable-on-paste-vertically.html
   editing/input/reveal-edit-on-input-vertically.html
   editing/input/reveal-edit-on-paste-vertically.html

* editing/Editor.cpp:
(WebCore::Editor::insertTextWithoutSendingTextEvent):
(WebCore::Editor::revealSelectionAfterEditingOperation):

* editing/input/caret-at-the-edge-of-contenteditable-expected.png: Added.
* editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Added.
* editing/input/caret-at-the-edge-of-contenteditable.html: Added.
* editing/input/caret-at-the-edge-of-input-expected.png: Added.
* editing/input/caret-at-the-edge-of-input-expected.txt: Added.
* editing/input/caret-at-the-edge-of-input.html: Added.
* editing/input/resources/reveal-utilities.js: Added.
* editing/input/reveal-caret-of-multiline-contenteditable-expected.png: Added.
* editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: Added.
* editing/input/reveal-caret-of-multiline-contenteditable.html: Added.
* editing/input/reveal-caret-of-multiline-input-expected.png: Added.
* editing/input/reveal-caret-of-multiline-input-expected.txt: Added.
* editing/input/reveal-caret-of-multiline-input.html: Added.
* editing/input/reveal-contenteditable-on-input-vertically-expected.txt: Added.
* editing/input/reveal-contenteditable-on-input-vertically.html: Added.
* editing/input/reveal-contenteditable-on-paste-vertically-expected.txt: Added.
* editing/input/reveal-contenteditable-on-paste-vertically.html: Added.
* editing/input/reveal-edit-on-input-vertically-expected.txt: Added.
* editing/input/reveal-edit-on-input-vertically.html: Added.
* editing/input/reveal-edit-on-paste-vertically-expected.txt: Added.
* editing/input/reveal-edit-on-paste-vertically.html: Added.
* platform/chromium/test_expectations.txt: Mark new tests as FAIL to grab results from bots.
* platform/gtk/test_expectations.txt: Mark new tests as FAIL to grab results from bots.
* platform/qt/test_expectations.txt: Mark new tests as FAIL to grab results from bots.
* platform/win/test_expectations.txt: Mark new tests as FAIL to grab results from bots.

TBR=mnaga...@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9969106

Modified Paths

branches/chromium/1084/Source/WebCore/editing/Editor.cpp


Removed Paths

branches/chromium/1084/LayoutTests/editing/input/caret-at-the-edge-of-contenteditable.html
branches/chromium/1084/LayoutTests/editing/input/caret-at-the-edge-of-input.html
branches/chromium/1084/LayoutTests/editing/input/resources/reveal-utilities.js
branches/chromium/1084/LayoutTests/editing/input/reveal-caret-of-multiline-contenteditable.html
branches/chromium/1084/LayoutTests/editing/input/reveal-caret-of-multiline-input.html
branches/chromium/1084/LayoutTests/editing/input/reveal-contenteditable-on-input-vertically-expected.txt
branches/chromium/1084/LayoutTests/editing/input/reveal-contenteditable-on-input-vertically.html
branches/chromium/1084/LayoutTests/editing/input/reveal-contenteditable-on-paste-vertically-expected.txt
branches/chromium/1084/LayoutTests/editing/input/reveal-contenteditable-on-paste-vertically.html
branches/chromium/1084/LayoutTests/editing/input/reveal-edit-on-input-vertically-expected.txt
branches/chromium/1084/LayoutTests/editing/input/reveal-edit-on-input-vertically.html
branches/chromium/1084/LayoutTests/editing/input/reveal-edit-on-paste-vertically-expected.txt
branches/chromium/1084/LayoutTests/editing/input/reveal-edit-on-paste-vertically.html




Diff

Deleted: branches/chromium/1084/LayoutTests/editing/input/caret-at-the-edge-of-contenteditable.html (113049 => 113050)

--- branches/chromium/1084/LayoutTests/editing/input/caret-at-the-edge-of-contenteditable.html	2012-04-03 16:52:28 UTC (rev 113049)
+++ branches/chromium/1084/LayoutTests/editing/input/caret-at-the-edge-of-contenteditable.html	2012-04-03 17:00:19 UTC (rev 113050)
@@ -1,24 +0,0 @@
-!DOCTYPE html
-head
-/head
-body
-divWhen the caret reaches the edge of the input box or content editable div, on the next input if must jump to the center of the control./div
-span style=position:absolute; visibility:hidden id=single-digit0/span
-div style=border:thin solid black; white-space:nowrap; overflow:hidden contenteditable=true id=input-contenteditable012345678901234567890123456789/div
-script
-
-var contentEditable = 

[webkit-changes] [103896] trunk/LayoutTests

2012-01-02 Thread mnaganov
Title: [103896] trunk/LayoutTests








Revision 103896
Author mnaga...@chromium.org
Date 2012-01-02 01:59:40 -0800 (Mon, 02 Jan 2012)


Log Message
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=75430

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (103895 => 103896)

--- trunk/LayoutTests/ChangeLog	2012-01-02 09:52:45 UTC (rev 103895)
+++ trunk/LayoutTests/ChangeLog	2012-01-02 09:59:40 UTC (rev 103896)
@@ -1,3 +1,10 @@
+2012-01-02  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations update.
+https://bugs.webkit.org/show_bug.cgi?id=75430
+
+* platform/chromium/test_expectations.txt:
+
 2012-01-02  Csaba Osztrogonác  o...@webkit.org
 
 Remove unnecessary [Custom] attribute in CanvasRenderingContext2D.idl


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (103895 => 103896)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-02 09:52:45 UTC (rev 103895)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-02 09:59:40 UTC (rev 103896)
@@ -3905,3 +3905,5 @@
 BUGCR108832 SKIP : fast/js/array-splice.html = CRASH
 
 BUGWK75418 : css2.1/20110323/border-collapse-offset-002.htm = MISSING
+
+BUGWK75430 MAC : plugins/iframe-plugin-bgcolor.html = TEXT TIMEOUT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [103885] trunk/LayoutTests

2012-01-01 Thread mnaganov
Title: [103885] trunk/LayoutTests








Revision 103885
Author mnaga...@chromium.org
Date 2012-01-01 13:41:04 -0800 (Sun, 01 Jan 2012)


Log Message
[Chromium] Unreviewed test expectations update after r103877.
https://bugs.webkit.org/show_bug.cgi?id=75418

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (103884 => 103885)

--- trunk/LayoutTests/ChangeLog	2012-01-01 21:24:34 UTC (rev 103884)
+++ trunk/LayoutTests/ChangeLog	2012-01-01 21:41:04 UTC (rev 103885)
@@ -1,5 +1,12 @@
 2012-01-01  Mikhail Naganov  mnaga...@chromium.org
 
+[Chromium] Unreviewed test expectations update after r103877.
+https://bugs.webkit.org/show_bug.cgi?id=75418
+
+* platform/chromium/test_expectations.txt:
+
+2012-01-01  Mikhail Naganov  mnaga...@chromium.org
+
 [Chromium] Unreviewed test expectations update after r103875.
 https://bugs.webkit.org/show_bug.cgi?id=74888
 


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (103884 => 103885)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-01 21:24:34 UTC (rev 103884)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-01 21:41:04 UTC (rev 103885)
@@ -3904,3 +3904,5 @@
 
 // Crashes due to an OOM error on V8.
 BUGCR108832 SKIP : fast/js/array-splice.html = CRASH
+
+BUGWK75418 : css2.1/20110323/border-collapse-offset-002.htm = MISSING






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [103840] trunk/LayoutTests

2011-12-30 Thread mnaganov
Title: [103840] trunk/LayoutTests








Revision 103840
Author mnaga...@chromium.org
Date 2011-12-30 02:29:05 -0800 (Fri, 30 Dec 2011)


Log Message
[Chromium] Unreviewed test expectations change for nested-reflection tests.

* platform/chromium/test_expectations.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (103839 => 103840)

--- trunk/LayoutTests/ChangeLog	2011-12-30 10:17:20 UTC (rev 103839)
+++ trunk/LayoutTests/ChangeLog	2011-12-30 10:29:05 UTC (rev 103840)
@@ -1,3 +1,9 @@
+2011-12-30  Mikhail Naganov  mnaga...@chromium.org
+
+[Chromium] Unreviewed test expectations change for nested-reflection tests.
+
+* platform/chromium/test_expectations.txt:
+
 2011-12-29  Tony Chang  t...@chromium.org
 
 [chromium] Unreviewed, add a bug number to a failing test.


Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (103839 => 103840)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-12-30 10:17:20 UTC (rev 103839)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-12-30 10:29:05 UTC (rev 103840)
@@ -2704,6 +2704,8 @@
 BUGWK47949 MAC : compositing/reflections/reflection-opacity.html = IMAGE PASS
 BUGWK47949 MAC : compositing/reflections/reflection-positioning.html = IMAGE PASS
 BUGWK74949 MAC : compositing/reflections/nested-reflection-transformed2.html = IMAGE PASS
+BUGWK47949 MAC : compositing/reflections/nested-reflection-transition.html = IMAGE PASS
+BUGWK47949 MAC : compositing/reflections/nested-reflection-size-change.html = IMAGE PASS
 
 // Flaky because these are a poorly written tests. Need dino's new animation API
 BUGWK54306 : compositing/reflections/animation-inside-reflection.html = PASS IMAGE IMAGE+TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [103085] trunk/LayoutTests

2011-12-16 Thread mnaganov
Title: [103085] trunk/LayoutTests








Revision 103085
Author mnaga...@chromium.org
Date 2011-12-16 11:09:35 -0800 (Fri, 16 Dec 2011)


Log Message
[Gtk] Add platform-specific test results after r103073

* platform/gtk/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Added.
* platform/gtk/editing/input/caret-at-the-edge-of-input-expected.txt: Added.
* platform/gtk/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: Added.
* platform/gtk/editing/input/reveal-caret-of-multiline-input-expected.txt: Added.

Modified Paths

trunk/LayoutTests/ChangeLog


Added Paths

trunk/LayoutTests/platform/gtk/editing/input/caret-at-the-edge-of-contenteditable-expected.txt
trunk/LayoutTests/platform/gtk/editing/input/caret-at-the-edge-of-input-expected.txt
trunk/LayoutTests/platform/gtk/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt
trunk/LayoutTests/platform/gtk/editing/input/reveal-caret-of-multiline-input-expected.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (103084 => 103085)

--- trunk/LayoutTests/ChangeLog	2011-12-16 19:08:09 UTC (rev 103084)
+++ trunk/LayoutTests/ChangeLog	2011-12-16 19:09:35 UTC (rev 103085)
@@ -9,6 +9,15 @@
 
 2011-12-16  Mikhail Naganov  mnaga...@chromium.org
 
+[Gtk] Add platform-specific test results after r103073
+
+* platform/gtk/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Added.
+* platform/gtk/editing/input/caret-at-the-edge-of-input-expected.txt: Added.
+* platform/gtk/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: Added.
+* platform/gtk/editing/input/reveal-caret-of-multiline-input-expected.txt: Added.
+
+2011-12-16  Mikhail Naganov  mnaga...@chromium.org
+
 Rebaseline and add expectations after r103073
 [chromium] https://bugs.webkit.org/show_bug.cgi?id=74726
 


Added: trunk/LayoutTests/platform/gtk/editing/input/caret-at-the-edge-of-contenteditable-expected.txt (0 => 103085)

--- trunk/LayoutTests/platform/gtk/editing/input/caret-at-the-edge-of-contenteditable-expected.txt	(rev 0)
+++ trunk/LayoutTests/platform/gtk/editing/input/caret-at-the-edge-of-contenteditable-expected.txt	2011-12-16 19:09:35 UTC (rev 103085)
@@ -0,0 +1,14 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x72
+  RenderBlock {HTML} at (0,0) size 800x72
+RenderBody {BODY} at (8,8) size 784x56
+  RenderBlock {DIV} at (0,0) size 784x36
+RenderText {#text} at (0,0) size 762x35
+  text run at (0,0) width 762: When the caret reaches the edge of the input box or content editable div, on the next input if must jump to the center of
+  text run at (0,18) width 73: the control.
+layer at (8,44) size 82x20 clip at (9,45) size 80x18 scrollX 41 scrollWidth 337
+  RenderBlock {DIV} at (0,36) size 82x20 [border: (1px solid #00)]
+RenderText {#text} at (1,1) size 336x17
+  text run at (1,1) width 336: 012345678901012345678901234567890123456789
+caret: position 12 of child 0 {#text} of child 5 {DIV} of body


Added: trunk/LayoutTests/platform/gtk/editing/input/caret-at-the-edge-of-input-expected.txt (0 => 103085)

--- trunk/LayoutTests/platform/gtk/editing/input/caret-at-the-edge-of-input-expected.txt	(rev 0)
+++ trunk/LayoutTests/platform/gtk/editing/input/caret-at-the-edge-of-input-expected.txt	2011-12-16 19:09:35 UTC (rev 103085)
@@ -0,0 +1,17 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x62
+  RenderBlock {HTML} at (0,0) size 800x62
+RenderBody {BODY} at (8,8) size 784x46
+  RenderBlock {DIV} at (0,0) size 784x18
+RenderText {#text} at (0,0) size 692x17
+  text run at (0,0) width 692: When the caret reaches the edge of the input box, on the next input if must jump to the center of the control.
+  RenderBlock (anonymous) at (0,18) size 784x28
+RenderTextControl {INPUT} at (2,2) size 103x24 [bgcolor=#FF] [border: (2px inset #00)]
+RenderText {#text} at (0,0) size 0x0
+RenderText {#text} at (0,0) size 0x0
+layer at (13,31) size 97x18 scrollX 51 scrollWidth 376
+  RenderBlock {DIV} at (3,3) size 97x18
+RenderText {#text} at (1,0) size 374x17
+  text run at (1,0) width 374: 012345678901012345678901234567890123456789
+caret: position 12 of child 0 {#text} of child 0 {DIV} of {#shadow-root} of child 3 {INPUT} of body


Added: trunk/LayoutTests/platform/gtk/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt (0 => 103085)

--- trunk/LayoutTests/platform/gtk/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt	(rev 0)
+++ trunk/LayoutTests/platform/gtk/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt	2011-12-16 19:09:35 UTC (rev 103085)
@@ -0,0 +1,104 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x216
+  

[webkit-changes] [102006] trunk/Source/WebCore

2011-12-05 Thread mnaganov
Title: [102006] trunk/Source/WebCore








Revision 102006
Author mnaga...@chromium.org
Date 2011-12-05 09:29:50 -0800 (Mon, 05 Dec 2011)


Log Message
Web Inspector: [Chromium] Heap profiler should designate weak references.
https://bugs.webkit.org/show_bug.cgi?id=69948

Weak references are now ignored when tracing paths to GC roots.

Reviewed by Yury Semikhatsky.

* inspector/front-end/HeapSnapshot.js:
(WebInspector.HeapSnapshotEdge.prototype.get isWeak):
(WebInspector.HeapSnapshotEdge.prototype.toString):
(WebInspector.HeapSnapshotEdge.prototype.get _hasStringName):
(WebInspector.HeapSnapshotRetainerEdge.prototype.get isWeak):
(WebInspector.HeapSnapshot.prototype._init):
(WebInspector.HeapSnapshotPathFinder.prototype._fillRootChildren):
(WebInspector.HeapSnapshotPathFinder.prototype._skipEdge):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (102005 => 102006)

--- trunk/Source/WebCore/ChangeLog	2011-12-05 17:07:30 UTC (rev 102005)
+++ trunk/Source/WebCore/ChangeLog	2011-12-05 17:29:50 UTC (rev 102006)
@@ -1,3 +1,21 @@
+2011-12-05  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: [Chromium] Heap profiler should designate weak references.
+https://bugs.webkit.org/show_bug.cgi?id=69948
+
+Weak references are now ignored when tracing paths to GC roots.
+
+Reviewed by Yury Semikhatsky.
+
+* inspector/front-end/HeapSnapshot.js:
+(WebInspector.HeapSnapshotEdge.prototype.get isWeak):
+(WebInspector.HeapSnapshotEdge.prototype.toString):
+(WebInspector.HeapSnapshotEdge.prototype.get _hasStringName):
+(WebInspector.HeapSnapshotRetainerEdge.prototype.get isWeak):
+(WebInspector.HeapSnapshot.prototype._init):
+(WebInspector.HeapSnapshotPathFinder.prototype._fillRootChildren):
+(WebInspector.HeapSnapshotPathFinder.prototype._skipEdge):
+
 2011-12-05  Sheriff Bot  webkit.review@gmail.com
 
 Unreviewed, rolling out r102004.


Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js (102005 => 102006)

--- trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js	2011-12-05 17:07:30 UTC (rev 102005)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js	2011-12-05 17:29:50 UTC (rev 102006)
@@ -236,6 +236,11 @@
 return this._type() === this._snapshot._edgeHiddenType;
 },
 
+get isWeak()
+{
+return this._type() === this._snapshot._edgeWeakType;
+},
+
 get isInternal()
 {
 return this._type() === this._snapshot._edgeInternalType;
@@ -279,6 +284,7 @@
 switch (this.type) {
 case context: return - + this.name;
 case element: return [ + this.name + ];
+case weak: return [[ + this.name + ]];
 case property:
 return this.name.indexOf( ) === -1 ? . + this.name : [\ + this.name + \];
 case shortcut:
@@ -302,7 +308,7 @@
 
 get _hasStringName()
 {
-return !this.isElement  !this.isHidden;
+return !this.isElement  !this.isHidden  !this.isWeak;
 },
 
 get _name()
@@ -401,6 +407,11 @@
 return this._edge.isShortcut;
 },
 
+get isWeak()
+{
+return this._edge.isWeak;
+},
+
 get name()
 {
 return this._edge.name;
@@ -695,6 +706,7 @@
 this._edgeHiddenType = this._edgeTypes.indexOf(hidden);
 this._edgeInternalType = this._edgeTypes.indexOf(internal);
 this._edgeShortcutType = this._edgeTypes.indexOf(shortcut);
+this._edgeWeakType = this._edgeTypes.indexOf(weak);
 this._edgeInvisibleType = this._edgeTypes.length;
 this._edgeTypes.push(invisible);
 
@@ -1406,8 +1418,12 @@
 {
 var result = [];
 for (var iter = this._snapshot.rootNode.edges; iter.hasNext(); iter.next()) {
-if (!filter || filter(iter.edge.node))
+if (!filter) {
+if (!iter.edge.isShortcut)
+result[iter.edge.nodeIndex] = true;
+} else if (filter(iter.edge.node)) {
 result[iter.edge.nodeIndex] = true;
+}
 }
 return result;
 },
@@ -1450,6 +1466,7 @@
 {
 return edge.isInvisible
 || (this._skipHidden  (edge.isHidden || edge.node.isHidden))
+|| edge.isWeak
 || this._hasInPath(edge.nodeIndex);
 },
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [98315] trunk/Tools

2011-10-24 Thread mnaganov
Title: [98315] trunk/Tools








Revision 98315
Author mnaga...@chromium.org
Date 2011-10-24 20:36:24 -0700 (Mon, 24 Oct 2011)


Log Message
Fix bug summary when rolling Chromium DEPS to LKGR.
https://bugs.webkit.org/show_bug.cgi?id=69917

Reviewed by Adam Barth.

* Scripts/webkitpy/tool/bot/irc_command.py:
* Scripts/webkitpy/tool/bot/sheriff.py:
* Scripts/webkitpy/tool/commands/roll.py:
* Scripts/webkitpy/tool/commands/roll_unittest.py:

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitpy/tool/bot/irc_command.py
trunk/Tools/Scripts/webkitpy/tool/bot/sheriff.py
trunk/Tools/Scripts/webkitpy/tool/commands/roll.py
trunk/Tools/Scripts/webkitpy/tool/commands/roll_unittest.py




Diff

Modified: trunk/Tools/ChangeLog (98314 => 98315)

--- trunk/Tools/ChangeLog	2011-10-25 03:17:25 UTC (rev 98314)
+++ trunk/Tools/ChangeLog	2011-10-25 03:36:24 UTC (rev 98315)
@@ -1,3 +1,15 @@
+2011-10-24  Mikhail Naganov  mnaga...@chromium.org
+
+Fix bug summary when rolling Chromium DEPS to LKGR.
+https://bugs.webkit.org/show_bug.cgi?id=69917
+
+Reviewed by Adam Barth.
+
+* Scripts/webkitpy/tool/bot/irc_command.py:
+* Scripts/webkitpy/tool/bot/sheriff.py:
+* Scripts/webkitpy/tool/commands/roll.py:
+* Scripts/webkitpy/tool/commands/roll_unittest.py:
+
 2011-10-24  Ivan Briano  i...@profusion.mobi
 
 [EFL] Build fix. Add include path to find npapi.h


Modified: trunk/Tools/Scripts/webkitpy/tool/bot/irc_command.py (98314 => 98315)

--- trunk/Tools/Scripts/webkitpy/tool/bot/irc_command.py	2011-10-25 03:17:25 UTC (rev 98314)
+++ trunk/Tools/Scripts/webkitpy/tool/bot/irc_command.py	2011-10-25 03:36:24 UTC (rev 98315)
@@ -163,7 +163,7 @@
 tool.irc().post(%s: Rolling Chromium DEPS to %s % (nick, roll_target))
 
 try:
-bug_id = sheriff.post_chromium_deps_roll(revision)
+bug_id = sheriff.post_chromium_deps_roll(revision, roll_target)
 bug_url = tool.bugs.bug_url_for_bug_id(bug_id)
 tool.irc().post(%s: Created DEPS roll: %s % (nick, bug_url))
 except ScriptError, e:


Modified: trunk/Tools/Scripts/webkitpy/tool/bot/sheriff.py (98314 => 98315)

--- trunk/Tools/Scripts/webkitpy/tool/bot/sheriff.py	2011-10-25 03:17:25 UTC (rev 98314)
+++ trunk/Tools/Scripts/webkitpy/tool/bot/sheriff.py	2011-10-25 03:36:24 UTC (rev 98315)
@@ -90,15 +90,15 @@
 ])
 return parse_bug_id(output)
 
-def post_chromium_deps_roll(self, revision):
+def post_chromium_deps_roll(self, revision, revision_name):
 args = [
 post-chromium-deps-roll,
 --force-clean,
 --non-interactive,
 --parent-command=sheriff-bot,
 ]
-if revision:
-args += [revision]
+# revision can be None, but revision_name is always something meaningful.
+args += [revision, revision_name]
 output = self._sheriffbot.run_webkit_patch(args)
 return parse_bug_id(output)
 


Modified: trunk/Tools/Scripts/webkitpy/tool/commands/roll.py (98314 => 98315)

--- trunk/Tools/Scripts/webkitpy/tool/commands/roll.py	2011-10-25 03:17:25 UTC (rev 98314)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/roll.py	2011-10-25 03:36:24 UTC (rev 98315)
@@ -50,8 +50,8 @@
 
 class PostChromiumDEPSRoll(AbstractSequencedCommand):
 name = post-chromium-deps-roll
-help_text = Posts a patch to update Chromium DEPS (defaults to the last-known good revision of Chromium)
-argument_names = [CHROMIUM_REVISION]
+help_text = Posts a patch to update Chromium DEPS (revision defaults to the last-known good revision of Chromium)
+argument_names = CHROMIUM_REVISION CHROMIUM_REVISION_NAME
 steps = [
 steps.CleanWorkingDirectory,
 steps.Update,
@@ -65,9 +65,10 @@
 options.review = False
 options.request_commit = True
 
-chromium_revision = (args and args[0])
+chromium_revision = args[0]
+chromium_revision_name = args[1]
 return {
 chromium_revision: chromium_revision,
-bug_title: Roll Chromium DEPS to r%s % chromium_revision,
+bug_title: Roll Chromium DEPS to %s % chromium_revision_name,
 bug_description: A DEPS roll a day keeps the build break away.,
 }


Modified: trunk/Tools/Scripts/webkitpy/tool/commands/roll_unittest.py (98314 => 98315)

--- trunk/Tools/Scripts/webkitpy/tool/commands/roll_unittest.py	2011-10-25 03:17:25 UTC (rev 98314)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/roll_unittest.py	2011-10-25 03:36:24 UTC (rev 98315)
@@ -48,3 +48,16 @@
 ERROR: Unable to update Chromium DEPS
 
 self.assert_execute_outputs(RollChromiumDEPS(), [5764], options=options, expected_stderr=expected_stderr, expected_exception=SystemExit)
+
+
+class PostRollCommandsTest(CommandsTest):
+def test_prepare_state(self):
+postroll = PostChromiumDEPSRoll()
+options = MockOptions()
+tool = MockTool()
+   

[webkit-changes] [97609] trunk/Source/WebKit/chromium

2011-10-17 Thread mnaganov
Title: [97609] trunk/Source/WebKit/chromium








Revision 97609
Author mnaga...@chromium.org
Date 2011-10-17 05:53:02 -0700 (Mon, 17 Oct 2011)


Log Message
Unreviewed. Remove reference to third_party/skia/gpu.
It was removed from Chromium DEPS in Chromium r105526.

* DEPS:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/DEPS




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (97608 => 97609)

--- trunk/Source/WebKit/chromium/ChangeLog	2011-10-17 12:41:23 UTC (rev 97608)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-10-17 12:53:02 UTC (rev 97609)
@@ -1,3 +1,10 @@
+2011-10-17  Mikhail Naganov  mnaga...@chromium.org
+
+Unreviewed. Remove reference to third_party/skia/gpu.
+It was removed from Chromium DEPS in Chromium r105526.
+
+* DEPS:
+
 2011-10-17  Sheriff Bot  webkit.review@gmail.com
 
 Unreviewed.  Rolled DEPS.


Modified: trunk/Source/WebKit/chromium/DEPS (97608 => 97609)

--- trunk/Source/WebKit/chromium/DEPS	2011-10-17 12:41:23 UTC (rev 97608)
+++ trunk/Source/WebKit/chromium/DEPS	2011-10-17 12:53:02 UTC (rev 97609)
@@ -54,8 +54,6 @@
   # skia dependencies
   'skia':
 Var('chromium_svn')+'/skia@'+Var('chromium_rev'),
-  'third_party/skia/gpu':
-From('chromium_deps', 'src/third_party/skia/gpu'),
   'third_party/skia/src':
 From('chromium_deps', 'src/third_party/skia/src'),
   'third_party/skia/include':






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [97611] trunk

2011-10-17 Thread mnaganov
Title: [97611] trunk








Revision 97611
Author mnaga...@chromium.org
Date 2011-10-17 06:21:12 -0700 (Mon, 17 Oct 2011)


Log Message
Web Inspector: [Chromium] Add an ability to look up and explore an object from a heap profile.
https://bugs.webkit.org/show_bug.cgi?id=61179

This is exteremely helpful when dealing with DOM wrappers, as
their properties are mostly implemented with getters and thus not
stored in heap snapshots.

Reviewed by Pavel Feldman.

* English.lproj/localizedStrings.js:
* bindings/js/ScriptProfiler.cpp:
(WebCore::ScriptProfiler::objectByHeapObjectId):
* bindings/js/ScriptProfiler.h:
* bindings/v8/ScriptProfiler.cpp:
(WebCore::ScriptProfiler::objectByHeapObjectId):
* bindings/v8/ScriptProfiler.h:
* inspector/Inspector.json:
* inspector/InspectorController.cpp:
(WebCore::InspectorController::InspectorController):
* inspector/InspectorProfilerAgent.cpp:
(WebCore::InspectorProfilerAgent::create):
(WebCore::InspectorProfilerAgent::InspectorProfilerAgent):
(WebCore::InspectorProfilerAgent::getObjectByHeapObjectId):
* inspector/InspectorProfilerAgent.h:
* inspector/front-end/DetailedHeapshotGridNodes.js:
(WebInspector.HeapSnapshotGridNode.prototype.hasHoverMessage.false.queryObjectContent):
(WebInspector.HeapSnapshotGenericObjectNode):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.get data):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.queryObjectContent.else.formatResult):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.queryObjectContent):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.shortenWindowURL):
* inspector/front-end/DetailedHeapshotView.js:
(WebInspector.DetailedHeapshotView.prototype._showObjectPopover):
* inspector/front-end/HeapSnapshot.js:
(WebInspector.HeapSnapshotNode.prototype.get canBeQueried):
(WebInspector.HeapSnapshotNode.prototype.get flags):
(WebInspector.HeapSnapshotNode.prototype.get isDOMWindow):
(WebInspector.HeapSnapshot.prototype._init):
(WebInspector.HeapSnapshot.prototype.dispose):
(WebInspector.HeapSnapshot.prototype._flagsOfNode):
(WebInspector.HeapSnapshot.prototype._calculateFlags):
(WebInspector.HeapSnapshot.prototype.updateStaticData):
(WebInspector.HeapSnapshotNodesProvider.prototype._serialize):
* inspector/front-end/HeapSnapshotProxy.js:
(WebInspector.HeapSnapshotProxy.prototype.get nodeFlags):
* inspector/front-end/RemoteObject.js:
(WebInspector.RemoteObject.fromError):
* inspector/front-end/heapProfiler.css:
(.detailed-heapshot-view tr:not(.selected) td.object-column span.highlight):

* inspector/profiler/heap-snapshot-expected.txt:
* inspector/profiler/heap-snapshot-test.js:
(initialize_HeapSnapshotTest.InspectorTest.createHeapSnapshotMockWithDOM):
(initialize_HeapSnapshotTest):
* inspector/profiler/heap-snapshot.html:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/inspector/profiler/heap-snapshot-expected.txt
trunk/LayoutTests/inspector/profiler/heap-snapshot-test.js
trunk/LayoutTests/inspector/profiler/heap-snapshot.html
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/English.lproj/localizedStrings.js
trunk/Source/WebCore/bindings/js/ScriptProfiler.cpp
trunk/Source/WebCore/bindings/js/ScriptProfiler.h
trunk/Source/WebCore/bindings/v8/ScriptProfiler.cpp
trunk/Source/WebCore/bindings/v8/ScriptProfiler.h
trunk/Source/WebCore/inspector/Inspector.json
trunk/Source/WebCore/inspector/InspectorController.cpp
trunk/Source/WebCore/inspector/InspectorProfilerAgent.cpp
trunk/Source/WebCore/inspector/InspectorProfilerAgent.h
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js
trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js
trunk/Source/WebCore/inspector/front-end/HeapSnapshotProxy.js
trunk/Source/WebCore/inspector/front-end/RemoteObject.js
trunk/Source/WebCore/inspector/front-end/heapProfiler.css




Diff

Modified: trunk/LayoutTests/ChangeLog (97610 => 97611)

--- trunk/LayoutTests/ChangeLog	2011-10-17 12:58:42 UTC (rev 97610)
+++ trunk/LayoutTests/ChangeLog	2011-10-17 13:21:12 UTC (rev 97611)
@@ -1,3 +1,20 @@
+2011-10-17  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: [Chromium] Add an ability to look up and explore an object from a heap profile.
+https://bugs.webkit.org/show_bug.cgi?id=61179
+
+This is exteremely helpful when dealing with DOM wrappers, as
+their properties are mostly implemented with getters and thus not
+stored in heap snapshots.
+
+Reviewed by Pavel Feldman.
+
+* inspector/profiler/heap-snapshot-expected.txt:
+* inspector/profiler/heap-snapshot-test.js:
+(initialize_HeapSnapshotTest.InspectorTest.createHeapSnapshotMockWithDOM):
+(initialize_HeapSnapshotTest):
+* inspector/profiler/heap-snapshot.html:
+
 2011-10-17  Alexander Pavlov  apav...@chromium.org
 
 Web Inspector: Editing CSS selector doesn't fire onResourceContentCommitted


Modified: 

[webkit-changes] [97362] trunk

2011-10-13 Thread mnaganov
Title: [97362] trunk








Revision 97362
Author mnaga...@chromium.org
Date 2011-10-13 04:08:49 -0700 (Thu, 13 Oct 2011)


Log Message
Web Inspector: [Chromium] Add an ability to look up and explore an object from a heap profile.
https://bugs.webkit.org/show_bug.cgi?id=61179

This is exteremely helpful when dealing with DOM wrappers, as
their properties are mostly implemented with getters and thus not
stored in heap snapshots.

Reviewed by Pavel Feldman.

* English.lproj/localizedStrings.js:
* bindings/js/ScriptProfiler.cpp:
(WebCore::ScriptProfiler::objectByHeapObjectId):
* bindings/js/ScriptProfiler.h:
* bindings/v8/ScriptProfiler.cpp:
(WebCore::ScriptProfiler::objectByHeapObjectId):
* bindings/v8/ScriptProfiler.h:
* inspector/Inspector.json:
* inspector/InspectorController.cpp:
(WebCore::InspectorController::InspectorController):
* inspector/InspectorProfilerAgent.cpp:
(WebCore::InspectorProfilerAgent::create):
(WebCore::InspectorProfilerAgent::InspectorProfilerAgent):
(WebCore::InspectorProfilerAgent::getObjectByHeapObjectId):
* inspector/InspectorProfilerAgent.h:
* inspector/front-end/DetailedHeapshotGridNodes.js:
(WebInspector.HeapSnapshotGridNode.prototype.hasHoverMessage.false.queryObjectContent):
(WebInspector.HeapSnapshotGenericObjectNode):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.get data):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.queryObjectContent.else.formatResult):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.queryObjectContent):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.shortenWindowURL):
* inspector/front-end/DetailedHeapshotView.js:
(WebInspector.DetailedHeapshotView.prototype._showObjectPopover):
* inspector/front-end/HeapSnapshot.js:
(WebInspector.HeapSnapshotNode.prototype.get canBeQueried):
(WebInspector.HeapSnapshotNode.prototype.get flags):
(WebInspector.HeapSnapshotNode.prototype.get isDOMWindow):
(WebInspector.HeapSnapshot.prototype._init):
(WebInspector.HeapSnapshot.prototype.dispose):
(WebInspector.HeapSnapshot.prototype._flagsOfNode):
(WebInspector.HeapSnapshot.prototype._calculateFlags):
(WebInspector.HeapSnapshot.prototype.updateStaticData):
(WebInspector.HeapSnapshotNodesProvider.prototype._serialize):
* inspector/front-end/HeapSnapshotProxy.js:
(WebInspector.HeapSnapshotProxy.prototype.get nodeFlags):
* inspector/front-end/RemoteObject.js:
(WebInspector.RemoteObject.fromError):
* inspector/front-end/heapProfiler.css:
(.detailed-heapshot-view tr:not(.selected) td.object-column span.highlight):

* inspector/profiler/heap-snapshot-expected.txt:
* inspector/profiler/heap-snapshot-test.js:
(initialize_HeapSnapshotTest.InspectorTest.createHeapSnapshotMockWithDOM):
(initialize_HeapSnapshotTest):
* inspector/profiler/heap-snapshot.html:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/inspector/profiler/heap-snapshot-expected.txt
trunk/LayoutTests/inspector/profiler/heap-snapshot-test.js
trunk/LayoutTests/inspector/profiler/heap-snapshot.html
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/English.lproj/localizedStrings.js
trunk/Source/WebCore/bindings/js/ScriptProfiler.cpp
trunk/Source/WebCore/bindings/js/ScriptProfiler.h
trunk/Source/WebCore/bindings/v8/ScriptProfiler.cpp
trunk/Source/WebCore/bindings/v8/ScriptProfiler.h
trunk/Source/WebCore/inspector/Inspector.json
trunk/Source/WebCore/inspector/InspectorController.cpp
trunk/Source/WebCore/inspector/InspectorProfilerAgent.cpp
trunk/Source/WebCore/inspector/InspectorProfilerAgent.h
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js
trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js
trunk/Source/WebCore/inspector/front-end/HeapSnapshotProxy.js
trunk/Source/WebCore/inspector/front-end/RemoteObject.js
trunk/Source/WebCore/inspector/front-end/heapProfiler.css




Diff

Modified: trunk/LayoutTests/ChangeLog (97361 => 97362)

--- trunk/LayoutTests/ChangeLog	2011-10-13 10:59:31 UTC (rev 97361)
+++ trunk/LayoutTests/ChangeLog	2011-10-13 11:08:49 UTC (rev 97362)
@@ -1,3 +1,20 @@
+2011-10-13  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: [Chromium] Add an ability to look up and explore an object from a heap profile.
+https://bugs.webkit.org/show_bug.cgi?id=61179
+
+This is exteremely helpful when dealing with DOM wrappers, as
+their properties are mostly implemented with getters and thus not
+stored in heap snapshots.
+
+Reviewed by Pavel Feldman.
+
+* inspector/profiler/heap-snapshot-expected.txt:
+* inspector/profiler/heap-snapshot-test.js:
+(initialize_HeapSnapshotTest.InspectorTest.createHeapSnapshotMockWithDOM):
+(initialize_HeapSnapshotTest):
+* inspector/profiler/heap-snapshot.html:
+
 2011-10-13  Kent Tamura  tk...@chromium.org
 
 [Chromium] Fix test expectations.


Modified: trunk/LayoutTests/inspector/profiler/heap-snapshot-expected.txt (97361 => 97362)

--- 

[webkit-changes] [96812] trunk/Source/WebCore

2011-10-06 Thread mnaganov
Title: [96812] trunk/Source/WebCore








Revision 96812
Author mnaga...@chromium.org
Date 2011-10-06 08:35:01 -0700 (Thu, 06 Oct 2011)


Log Message
Web Inspector: [Chromium] Heap Snapshot colors legend help popup is not shown.
https://bugs.webkit.org/show_bug.cgi?id=69482

Reviewed by Yury Semikhatsky.

* inspector/front-end/DetailedHeapshotView.js:
(WebInspector.DetailedHeapshotView.prototype._helpClicked):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (96811 => 96812)

--- trunk/Source/WebCore/ChangeLog	2011-10-06 14:44:49 UTC (rev 96811)
+++ trunk/Source/WebCore/ChangeLog	2011-10-06 15:35:01 UTC (rev 96812)
@@ -1,3 +1,13 @@
+2011-10-05  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: [Chromium] Heap Snapshot colors legend help popup is not shown.
+https://bugs.webkit.org/show_bug.cgi?id=69482
+
+Reviewed by Yury Semikhatsky.
+
+* inspector/front-end/DetailedHeapshotView.js:
+(WebInspector.DetailedHeapshotView.prototype._helpClicked):
+
 2011-10-05  Pavel Feldman  pfeld...@google.com
 
 Web Inspector: add 10 more front-end classes to the compilation process.


Modified: trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js (96811 => 96812)

--- trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-10-06 14:44:49 UTC (rev 96811)
+++ trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-10-06 15:35:01 UTC (rev 96812)
@@ -1083,7 +1083,7 @@
 
 _helpClicked: function(event)
 {
-if (!this.helpPopover) {
+if (!this._helpPopoverContentElement) {
 var refTypes = [a:, console-formatted-name, WebInspector.UIString(property),
 0:, console-formatted-name, WebInspector.UIString(element),
 a:, console-formatted-number, WebInspector.UIString(context var),
@@ -1119,7 +1119,8 @@
 row.appendChild(objCell);
 contentElement.appendChild(row);
 }
-this.helpPopover = new WebInspector.Popover(contentElement);
+this._helpPopoverContentElement = contentElement;
+this.helpPopover = new WebInspector.Popover();
 
 function appendHelp(help, index, cell)
 {
@@ -1138,7 +1139,7 @@
 if (this.helpPopover.visible)
 this.helpPopover.hide();
 else
-this.helpPopover.show(this.helpButton.element);
+this.helpPopover.show(this._helpPopoverContentElement, this.helpButton.element);
 },
 
 _startRetainersHeaderDragging: function(event)






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [96599] trunk/Source/WebCore

2011-10-04 Thread mnaganov
Title: [96599] trunk/Source/WebCore








Revision 96599
Author mnaga...@chromium.org
Date 2011-10-04 09:17:43 -0700 (Tue, 04 Oct 2011)


Log Message
Web Inspector: Factor out object properties popup.
https://bugs.webkit.org/show_bug.cgi?id=69234

Also, for HTML elements, show a non-empty id value in the element name.

Reviewed by Pavel Feldman.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/WebCore.gypi
trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj
trunk/Source/WebCore/inspector/front-end/SourceFrame.js
trunk/Source/WebCore/inspector/front-end/WebKit.qrc
trunk/Source/WebCore/inspector/front-end/inspector.html


Added Paths

trunk/Source/WebCore/inspector/front-end/ObjectPopoverHelper.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (96598 => 96599)

--- trunk/Source/WebCore/ChangeLog	2011-10-04 16:16:16 UTC (rev 96598)
+++ trunk/Source/WebCore/ChangeLog	2011-10-04 16:17:43 UTC (rev 96599)
@@ -1,3 +1,23 @@
+2011-10-04  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: Factor out object properties popup.
+https://bugs.webkit.org/show_bug.cgi?id=69234
+
+Also, for HTML elements, show a non-empty id value in the element name.
+
+Reviewed by Pavel Feldman.
+
+* WebCore.gypi:
+* WebCore.vcproj/WebCore.vcproj:
+* inspector/front-end/ObjectPopoverHelper.js: Added.
+* inspector/front-end/SourceFrame.js: Extracted from here.
+(WebInspector.SourceFrame.prototype._initializeTextViewer):
+(WebInspector.SourceFrame.prototype._mouseDown):
+(WebInspector.SourceFrame.prototype._onShowPopover.showObjectPopover):
+(WebInspector.SourceFrame.prototype._onShowPopover):
+* inspector/front-end/WebKit.qrc:
+* inspector/front-end/inspector.html:
+
 2011-10-04  Pavel Feldman  pfeld...@google.com
 
 Web Inspector: compile text editor.


Modified: trunk/Source/WebCore/WebCore.gypi (96598 => 96599)

--- trunk/Source/WebCore/WebCore.gypi	2011-10-04 16:16:16 UTC (rev 96598)
+++ trunk/Source/WebCore/WebCore.gypi	2011-10-04 16:17:43 UTC (rev 96599)
@@ -6274,6 +6274,7 @@
 'inspector/front-end/NetworkLog.js',
 'inspector/front-end/NetworkPanel.js',
 'inspector/front-end/Object.js',
+'inspector/front-end/ObjectPopoverHelper.js',
 'inspector/front-end/ObjectPropertiesSection.js',
 'inspector/front-end/Panel.js',
 'inspector/front-end/PanelEnablerView.js',


Modified: trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj (96598 => 96599)

--- trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj	2011-10-04 16:16:16 UTC (rev 96598)
+++ trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj	2011-10-04 16:17:43 UTC (rev 96599)
@@ -69385,6 +69385,10 @@
 	
 /File
 File
+	RelativePath=..\inspector\front-end\ObjectPopoverHelper.js
+	
+/File
+File
 	RelativePath=..\inspector\front-end\ObjectPropertiesSection.js
 	
 /File


Added: trunk/Source/WebCore/inspector/front-end/ObjectPopoverHelper.js (0 => 96599)

--- trunk/Source/WebCore/inspector/front-end/ObjectPopoverHelper.js	(rev 0)
+++ trunk/Source/WebCore/inspector/front-end/ObjectPopoverHelper.js	2011-10-04 16:17:43 UTC (rev 96599)
@@ -0,0 +1,98 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following disclaimer
+ * in the documentation and/or other materials provided with the
+ * distribution.
+ * * Neither the name of Google Inc. nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+WebInspector.ObjectPopoverHelper = function(panelElement, getAnchor, queryObject, onHide, 

[webkit-changes] [95284] trunk/Source/WebCore/rendering/LayoutState.cpp

2011-09-16 Thread mnaganov
Title: [95284] trunk/Source/WebCore/rendering/LayoutState.cpp








Revision 95284
Author mnaga...@chromium.org
Date 2011-09-16 05:00:36 -0700 (Fri, 16 Sep 2011)


Log Message
Unreviewed. Fix release compilation after r95264

Modified Paths

trunk/Source/WebCore/rendering/LayoutState.cpp




Diff

Modified: trunk/Source/WebCore/rendering/LayoutState.cpp (95283 => 95284)

--- trunk/Source/WebCore/rendering/LayoutState.cpp	2011-09-16 11:43:16 UTC (rev 95283)
+++ trunk/Source/WebCore/rendering/LayoutState.cpp	2011-09-16 12:00:36 UTC (rev 95284)
@@ -120,6 +120,9 @@
 , m_renderer(flowThread)
 #endif
 {
+#ifdef NDEBUG
+UNUSED_PARAM(flowThread);
+#endif
 }
 
 LayoutState::LayoutState(RenderObject* root)






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [95027] trunk/Source/WebCore

2011-09-13 Thread mnaganov
Title: [95027] trunk/Source/WebCore








Revision 95027
Author mnaga...@chromium.org
Date 2011-09-13 08:32:51 -0700 (Tue, 13 Sep 2011)


Log Message
Web Inspector: Profiler: Fix overlapping data in function names column.
https://bugs.webkit.org/show_bug.cgi?id=67896

Reviewed by Pavel Feldman.

* inspector/front-end/ProfileDataGridTree.js:
(WebInspector.ProfileDataGridNode.prototype.createCell):
* inspector/front-end/dataGrid.css:
(.data-grid table.data):
(.data-grid td):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/ProfileDataGridTree.js
trunk/Source/WebCore/inspector/front-end/dataGrid.css




Diff

Modified: trunk/Source/WebCore/ChangeLog (95026 => 95027)

--- trunk/Source/WebCore/ChangeLog	2011-09-13 15:20:04 UTC (rev 95026)
+++ trunk/Source/WebCore/ChangeLog	2011-09-13 15:32:51 UTC (rev 95027)
@@ -1,3 +1,16 @@
+2011-09-10  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: Profiler: Fix overlapping data in function names column.
+https://bugs.webkit.org/show_bug.cgi?id=67896
+
+Reviewed by Pavel Feldman.
+
+* inspector/front-end/ProfileDataGridTree.js:
+(WebInspector.ProfileDataGridNode.prototype.createCell):
+* inspector/front-end/dataGrid.css:
+(.data-grid table.data):
+(.data-grid td):
+
 2011-09-13  Sheriff Bot  webkit.review@gmail.com
 
 Unreviewed, rolling out r95025.


Modified: trunk/Source/WebCore/inspector/front-end/ProfileDataGridTree.js (95026 => 95027)

--- trunk/Source/WebCore/inspector/front-end/ProfileDataGridTree.js	2011-09-13 15:20:04 UTC (rev 95026)
+++ trunk/Source/WebCore/inspector/front-end/ProfileDataGridTree.js	2011-09-13 15:32:51 UTC (rev 95027)
@@ -99,6 +99,7 @@
 // FIXME(62725): profileNode should reference a debugger location.
 var lineNumber = this.profileNode.lineNumber ? this.profileNode.lineNumber - 1 : 0;
 var urlElement = WebInspector.debuggerPresentationModel.linkifyLocation(this.profileNode.url, lineNumber, 0, profile-node-file);
+urlElement.style.maxWidth = 75%;
 cell.insertBefore(urlElement, cell.firstChild);
 }
 


Modified: trunk/Source/WebCore/inspector/front-end/dataGrid.css (95026 => 95027)

--- trunk/Source/WebCore/inspector/front-end/dataGrid.css	2011-09-13 15:20:04 UTC (rev 95026)
+++ trunk/Source/WebCore/inspector/front-end/dataGrid.css	2011-09-13 15:32:51 UTC (rev 95027)
@@ -73,6 +73,7 @@
 border-top: 0 none transparent;
 background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(0.5, white), color-stop(0.5, rgb(234, 243, 255)), to(rgb(234, 243, 255)));
 -webkit-background-size: 1px 32px;
+table-layout: fixed;
 }
 
 .data-grid.inline table.data {
@@ -93,6 +94,7 @@
 line-height: 12px;
 padding: 2px 4px;
 white-space: nowrap;
+overflow: hidden;
 border-right: 1px solid #aaa;
 -webkit-user-select: text;
 }






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [93861] trunk/Source/WebCore

2011-08-26 Thread mnaganov
Title: [93861] trunk/Source/WebCore








Revision 93861
Author mnaga...@chromium.org
Date 2011-08-26 02:56:17 -0700 (Fri, 26 Aug 2011)


Log Message
Web Inspector: [Chromium] Double clicking on numbers in Count  size columns doesn't toggle between values and percents in the Heap Snapshot.
https://bugs.webkit.org/show_bug.cgi?id=66988

Reviewed by Pavel Feldman.

* inspector/front-end/DetailedHeapshotView.js:
(WebInspector.DetailedHeapshotView.prototype._mouseClickInContentsGrid):
(WebInspector.DetailedHeapshotView.prototype._mouseDownInContentsGrid):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (93860 => 93861)

--- trunk/Source/WebCore/ChangeLog	2011-08-26 09:06:56 UTC (rev 93860)
+++ trunk/Source/WebCore/ChangeLog	2011-08-26 09:56:17 UTC (rev 93861)
@@ -1,3 +1,14 @@
+2011-08-26  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: [Chromium] Double clicking on numbers in Count  size columns doesn't toggle between values and percents in the Heap Snapshot.
+https://bugs.webkit.org/show_bug.cgi?id=66988
+
+Reviewed by Pavel Feldman.
+
+* inspector/front-end/DetailedHeapshotView.js:
+(WebInspector.DetailedHeapshotView.prototype._mouseClickInContentsGrid):
+(WebInspector.DetailedHeapshotView.prototype._mouseDownInContentsGrid):
+
 2011-08-26  Shinya Kawanaka  shin...@google.com
 
 REGRESSION(r93390): Empty or invalid maxlength of an input tag should be ignored.


Modified: trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js (93860 => 93861)

--- trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-08-26 09:06:56 UTC (rev 93860)
+++ trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-08-26 09:56:17 UTC (rev 93861)
@@ -531,28 +531,31 @@
 this.containmentView = new WebInspector.View();
 this.containmentView.element.addStyleClass(view);
 this.containmentDataGrid = new WebInspector.HeapSnapshotContainmentDataGrid();
-this.containmentDataGrid.element.addEventListener(click, this._mouseClickInContainmentGrid.bind(this), true);
+this.containmentDataGrid.element.addEventListener(click, this._mouseClickInContentsGrid.bind(this), true);
+this.containmentDataGrid.element.addEventListener(mousedown, this._mouseDownInContentsGrid.bind(this), true);
 this.containmentView.element.appendChild(this.containmentDataGrid.element);
 this.viewsContainer.appendChild(this.containmentView.element);
 
 this.constructorsView = new WebInspector.View();
 this.constructorsView.element.addStyleClass(view);
 this.constructorsDataGrid = new WebInspector.HeapSnapshotConstructorsDataGrid();
-this.constructorsDataGrid.element.addEventListener(click, this._mouseClickInContainmentGrid.bind(this), true);
+this.constructorsDataGrid.element.addEventListener(click, this._mouseClickInContentsGrid.bind(this), true);
+this.constructorsDataGrid.element.addEventListener(mousedown, this._mouseDownInContentsGrid.bind(this), true);
 this.constructorsView.element.appendChild(this.constructorsDataGrid.element);
 this.viewsContainer.appendChild(this.constructorsView.element);
 
 this.diffView = new WebInspector.View();
 this.diffView.element.addStyleClass(view);
 this.diffDataGrid = new WebInspector.HeapSnapshotDiffDataGrid();
-this.diffDataGrid.element.addEventListener(click, this._mouseClickInContainmentGrid.bind(this), true);
+this.diffDataGrid.element.addEventListener(click, this._mouseClickInContentsGrid.bind(this), true);
 this.diffView.element.appendChild(this.diffDataGrid.element);
 this.viewsContainer.appendChild(this.diffView.element);
 
 this.dominatorView = new WebInspector.View();
 this.dominatorView.element.addStyleClass(view);
 this.dominatorDataGrid = new WebInspector.HeapSnapshotDominatorsDataGrid();
-this.dominatorDataGrid.element.addEventListener(click, this._mouseClickInContainmentGrid.bind(this), true);
+this.dominatorDataGrid.element.addEventListener(click, this._mouseClickInContentsGrid.bind(this), true);
+this.dominatorDataGrid.element.addEventListener(mousedown, this._mouseDownInContentsGrid.bind(this), true);
 this.dominatorView.element.appendChild(this.dominatorDataGrid.element);
 this.viewsContainer.appendChild(this.dominatorView.element);
 
@@ -908,10 +911,10 @@
 profile.sidebarElement.subtitle = Number.bytesToString(s.totalSize);
 },
 
-_mouseClickInContainmentGrid: function(event)
+_mouseClickInContentsGrid: function(event)
 {
 var cell = event.target.enclosingNodeOrSelfWithNodeName(td);
-if (!cell || (!cell.hasStyleClass(object-column)  !cell.hasStyleClass(shallowSize-column)  !cell.hasStyleClass(retainedSize-column)))
+if (!cell || (!cell.hasStyleClass(object-column)))
 return;
 var row = 

[webkit-changes] [93782] trunk/Source

2011-08-25 Thread mnaganov
Title: [93782] trunk/Source








Revision 93782
Author mnaga...@chromium.org
Date 2011-08-25 07:37:21 -0700 (Thu, 25 Aug 2011)


Log Message
Chromium: expose MemoryCache::prune and FontCache::purgeInactiveFontData.
https://bugs.webkit.org/show_bug.cgi?id=66132

Reviewed by Tony Gentilcore.

* loader/cache/MemoryCache.cpp:
(WebCore::MemoryCache::prune):
(WebCore::MemoryCache::pruneToPercentage):
* loader/cache/MemoryCache.h: Methods moved from .h to .cpp to work around compilation problem with the Win Chromium port.

* public/WebCache.h:
* public/WebFontCache.h:
* src/WebCache.cpp:
(WebKit::WebCache::clear):
(WebKit::WebCache::prune):
* src/WebFontCache.cpp:
(WebKit::WebFontCache::prune):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/loader/cache/MemoryCache.cpp
trunk/Source/WebCore/loader/cache/MemoryCache.h
trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/public/WebCache.h
trunk/Source/WebKit/chromium/public/WebFontCache.h
trunk/Source/WebKit/chromium/src/WebCache.cpp
trunk/Source/WebKit/chromium/src/WebFontCache.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (93781 => 93782)

--- trunk/Source/WebCore/ChangeLog	2011-08-25 13:08:05 UTC (rev 93781)
+++ trunk/Source/WebCore/ChangeLog	2011-08-25 14:37:21 UTC (rev 93782)
@@ -1,3 +1,15 @@
+2011-08-25  Mikhail Naganov  mnaga...@chromium.org
+
+Chromium: expose MemoryCache::prune and FontCache::purgeInactiveFontData.
+https://bugs.webkit.org/show_bug.cgi?id=66132
+
+Reviewed by Tony Gentilcore.
+
+* loader/cache/MemoryCache.cpp:
+(WebCore::MemoryCache::prune):
+(WebCore::MemoryCache::pruneToPercentage):
+* loader/cache/MemoryCache.h: Methods moved from .h to .cpp to work around compilation problem with the Win Chromium port.
+
 2011-08-25  Sheriff Bot  webkit.review@gmail.com
 
 Unreviewed, rolling out r93771.


Modified: trunk/Source/WebCore/loader/cache/MemoryCache.cpp (93781 => 93782)

--- trunk/Source/WebCore/loader/cache/MemoryCache.cpp	2011-08-25 13:08:05 UTC (rev 93781)
+++ trunk/Source/WebCore/loader/cache/MemoryCache.cpp	2011-08-25 14:37:21 UTC (rev 93782)
@@ -697,6 +697,22 @@
 setDisabled(false);
 }
 
+void MemoryCache::prune()
+{
+if (m_liveSize + m_deadSize = m_capacity  m_maxDeadCapacity  m_deadSize = m_maxDeadCapacity) // Fast path.
+return;
+
+pruneDeadResources(); // Prune dead first, in case it was borrowing capacity from live.
+pruneLiveResources();
+}
+
+void MemoryCache::pruneToPercentage(float targetPercentLive)
+{
+pruneDeadResourcesToPercentage(targetPercentLive); // Prune dead first, in case it was borrowing capacity from live.
+pruneLiveResourcesToPercentage(targetPercentLive);
+}
+
+
 #ifndef NDEBUG
 void MemoryCache::dumpStats()
 {


Modified: trunk/Source/WebCore/loader/cache/MemoryCache.h (93781 => 93782)

--- trunk/Source/WebCore/loader/cache/MemoryCache.h	2011-08-25 13:08:05 UTC (rev 93781)
+++ trunk/Source/WebCore/loader/cache/MemoryCache.h	2011-08-25 14:37:21 UTC (rev 93782)
@@ -130,21 +130,9 @@
 void evictResources();
 
 void setPruneEnabled(bool enabled) { m_pruneEnabled = enabled; }
-void prune()
-{
-if (m_liveSize + m_deadSize = m_capacity  m_maxDeadCapacity  m_deadSize = m_maxDeadCapacity) // Fast path.
-return;
-
-pruneDeadResources(); // Prune dead first, in case it was borrowing capacity from live.
-pruneLiveResources();
-}
+void prune();
+void pruneToPercentage(float targetPercentLive);
 
-void pruneToPercentage(float targetPercentLive)
-{
-pruneDeadResourcesToPercentage(targetPercentLive); // Prune dead first, in case it was borrowing capacity from live.
-pruneLiveResourcesToPercentage(targetPercentLive);
-}
-
 void setDeadDecodedDataDeletionInterval(double interval) { m_deadDecodedDataDeletionInterval = interval; }
 double deadDecodedDataDeletionInterval() const { return m_deadDecodedDataDeletionInterval; }
 


Modified: trunk/Source/WebKit/chromium/ChangeLog (93781 => 93782)

--- trunk/Source/WebKit/chromium/ChangeLog	2011-08-25 13:08:05 UTC (rev 93781)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-08-25 14:37:21 UTC (rev 93782)
@@ -1,3 +1,18 @@
+2011-08-25  Mikhail Naganov  mnaga...@chromium.org
+
+Chromium: expose MemoryCache::prune and FontCache::purgeInactiveFontData.
+https://bugs.webkit.org/show_bug.cgi?id=66132
+
+Reviewed by Tony Gentilcore.
+
+* public/WebCache.h:
+* public/WebFontCache.h:
+* src/WebCache.cpp:
+(WebKit::WebCache::clear):
+(WebKit::WebCache::prune):
+* src/WebFontCache.cpp:
+(WebKit::WebFontCache::prune):
+
 2011-08-24  Kentaro Hara  hara...@google.com
 
 Implement a keypath parser strictly following the specification


Modified: trunk/Source/WebKit/chromium/public/WebCache.h (93781 => 93782)

--- 

[webkit-changes] [93096] trunk/Source/WebKit/chromium

2011-08-16 Thread mnaganov
Title: [93096] trunk/Source/WebKit/chromium








Revision 93096
Author mnaga...@chromium.org
Date 2011-08-16 07:15:35 -0700 (Tue, 16 Aug 2011)


Log Message
Web Inspector: [Chromium] Fix 'inspector_resources' target to depend on 'concatenated_heap_snapshot_worker_js'
https://bugs.webkit.org/show_bug.cgi?id=66300

Reviewed by Pavel Feldman.

* WebKit.gyp:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/WebKit.gyp




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (93095 => 93096)

--- trunk/Source/WebKit/chromium/ChangeLog	2011-08-16 13:41:51 UTC (rev 93095)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-08-16 14:15:35 UTC (rev 93096)
@@ -1,3 +1,12 @@
+2011-08-16  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: [Chromium] Fix 'inspector_resources' target to depend on 'concatenated_heap_snapshot_worker_js'
+https://bugs.webkit.org/show_bug.cgi?id=66300
+
+Reviewed by Pavel Feldman.
+
+* WebKit.gyp:
+
 2011-08-15  Dmitry Titov  dim...@chromium.org
 
 [Chromium] Add WebFrameClient::didAdoptURLLoader() notification


Modified: trunk/Source/WebKit/chromium/WebKit.gyp (93095 => 93096)

--- trunk/Source/WebKit/chromium/WebKit.gyp	2011-08-16 13:41:51 UTC (rev 93095)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2011-08-16 14:15:35 UTC (rev 93096)
@@ -742,6 +742,7 @@
 'conditions': [
 ['debug_devtools==0', {
 'dependencies': ['concatenated_devtools_js',
+ 'concatenated_heap_snapshot_worker_js',
  'concatenated_script_formatter_worker_js',
  'concatenated_devtools_css'],
 }],






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [93126] trunk/Source/WebKit/chromium

2011-08-16 Thread mnaganov
Title: [93126] trunk/Source/WebKit/chromium








Revision 93126
Author mnaga...@chromium.org
Date 2011-08-16 10:31:41 -0700 (Tue, 16 Aug 2011)


Log Message
Web Inspector: [Chromium] Add deployment of NetworkPanel .css files to concatenated version
https://bugs.webkit.org/show_bug.cgi?id=66316

Reviewed by NOBODY (OOPS!).

* WebKit.gyp:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/WebKit.gyp




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (93125 => 93126)

--- trunk/Source/WebKit/chromium/ChangeLog	2011-08-16 17:27:24 UTC (rev 93125)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-08-16 17:31:41 UTC (rev 93126)
@@ -1,5 +1,14 @@
 2011-08-16  Mikhail Naganov  mnaga...@chromium.org
 
+Web Inspector: [Chromium] Add deployment of NetworkPanel .css files to concatenated version
+https://bugs.webkit.org/show_bug.cgi?id=66316
+
+Reviewed by Pavel Feldman.
+
+* WebKit.gyp:
+
+2011-08-16  Mikhail Naganov  mnaga...@chromium.org
+
 Web Inspector: [Chromium] Fix 'inspector_resources' target to depend on 'concatenated_heap_snapshot_worker_js'
 https://bugs.webkit.org/show_bug.cgi?id=66300
 


Modified: trunk/Source/WebKit/chromium/WebKit.gyp (93125 => 93126)

--- trunk/Source/WebKit/chromium/WebKit.gyp	2011-08-16 17:27:24 UTC (rev 93125)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2011-08-16 17:31:41 UTC (rev 93126)
@@ -1343,6 +1343,12 @@
 'outputs': ['(PRODUCT_DIR)/resources/inspector/devTools.css'],
 'action': ['python', '@(_script_name)', '@(_input_page)', '@(_search_path)', '@(_outputs)'],
 }],
+'copies': [{
+'destination': '(PRODUCT_DIR)/resources/inspector',
+'files': [
+'@(webinspector_standalone_css_files)',
+],
+}],
 },
 ],
 }],






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [93060] trunk/Source/WebKit/chromium

2011-08-15 Thread mnaganov
Title: [93060] trunk/Source/WebKit/chromium








Revision 93060
Author mnaga...@chromium.org
Date 2011-08-15 14:28:13 -0700 (Mon, 15 Aug 2011)


Log Message
Chromium: expose MemoryCache::prune and FontCache::purgeInactiveFontData.
https://bugs.webkit.org/show_bug.cgi?id=66132

Reviewed by Darin Fisher.

* public/WebCache.h:
* public/WebFontCache.h:
* src/WebCache.cpp:
(WebKit::WebCache::prune):
* src/WebFontCache.cpp:
(WebKit::WebFontCache::prune):

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/public/WebCache.h
trunk/Source/WebKit/chromium/public/WebFontCache.h
trunk/Source/WebKit/chromium/src/WebCache.cpp
trunk/Source/WebKit/chromium/src/WebFontCache.cpp




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (93059 => 93060)

--- trunk/Source/WebKit/chromium/ChangeLog	2011-08-15 21:12:11 UTC (rev 93059)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-08-15 21:28:13 UTC (rev 93060)
@@ -1,3 +1,17 @@
+2011-08-15  Mikhail Naganov  mnaga...@chromium.org
+
+Chromium: expose MemoryCache::prune and FontCache::purgeInactiveFontData.
+https://bugs.webkit.org/show_bug.cgi?id=66132
+
+Reviewed by Darin Fisher.
+
+* public/WebCache.h:
+* public/WebFontCache.h:
+* src/WebCache.cpp:
+(WebKit::WebCache::prune):
+* src/WebFontCache.cpp:
+(WebKit::WebFontCache::prune):
+
 2011-08-15  Nico Weber  tha...@chromium.org
 
 [chromium] Implement shouldRubberBandInDirection


Modified: trunk/Source/WebKit/chromium/public/WebCache.h (93059 => 93060)

--- trunk/Source/WebKit/chromium/public/WebCache.h	2011-08-15 21:12:11 UTC (rev 93059)
+++ trunk/Source/WebKit/chromium/public/WebCache.h	2011-08-15 21:28:13 UTC (rev 93060)
@@ -71,9 +71,14 @@
 size_t capacity);
 
 // Clears the cache (as much as possible; some resources may not be
-// cleared if they are actively referenced).
+// cleared if they are actively referenced). Note that this method
+// only removes resources from live list, w/o releasing cache memory.
 WEBKIT_EXPORT static void clear();
 
+// Prunes resource cache. Destroys decoded images data and returns
+// memory to the system.
+WEBKIT_EXPORT static void prune();
+
 // Gets the usage statistics from the resource cache.
 WEBKIT_EXPORT static void getUsageStats(UsageStats*);
 


Modified: trunk/Source/WebKit/chromium/public/WebFontCache.h (93059 => 93060)

--- trunk/Source/WebKit/chromium/public/WebFontCache.h	2011-08-15 21:12:11 UTC (rev 93059)
+++ trunk/Source/WebKit/chromium/public/WebFontCache.h	2011-08-15 21:28:13 UTC (rev 93060)
@@ -47,6 +47,9 @@
 // Clears the cache.
 WEBKIT_EXPORT static void clear();
 
+// Purges inactive font data.
+WEBKIT_EXPORT static void prune();
+
 private:
 WebFontCache();  // Not intended to be instanced.
 };


Modified: trunk/Source/WebKit/chromium/src/WebCache.cpp (93059 => 93060)

--- trunk/Source/WebKit/chromium/src/WebCache.cpp	2011-08-15 21:12:11 UTC (rev 93059)
+++ trunk/Source/WebKit/chromium/src/WebCache.cpp	2011-08-15 21:28:13 UTC (rev 93060)
@@ -66,12 +66,17 @@
 void WebCache::clear()
 {
 MemoryCache* cache = WebCore::memoryCache();
-if (cache  !cache-disabled()) {
-cache-setDisabled(true);
-cache-setDisabled(false);
-}
+if (cache)
+cache-evictResources();
 }
 
+void WebCache::prune()
+{
+MemoryCache* cache = WebCore::memoryCache();
+if (cache)
+cache-prune();
+}
+
 void WebCache::getUsageStats(UsageStats* result)
 {
 ASSERT(result);


Modified: trunk/Source/WebKit/chromium/src/WebFontCache.cpp (93059 => 93060)

--- trunk/Source/WebKit/chromium/src/WebFontCache.cpp	2011-08-15 21:12:11 UTC (rev 93059)
+++ trunk/Source/WebKit/chromium/src/WebFontCache.cpp	2011-08-15 21:28:13 UTC (rev 93060)
@@ -55,4 +55,10 @@
 fontCache()-invalidate();
 }
 
+// static
+void WebFontCache::prune()
+{
+fontCache()-purgeInactiveFontData();
+}
+
 }  // namespace WebKit






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [90735] trunk/Source/WebCore

2011-07-11 Thread mnaganov
Title: [90735] trunk/Source/WebCore








Revision 90735
Author mnaga...@chromium.org
Date 2011-07-11 04:58:56 -0700 (Mon, 11 Jul 2011)


Log Message
Web Inspector: Fix resizing of sidebar pane in Timeline and Profile panels.
https://bugs.webkit.org/show_bug.cgi?id=64161

Reviewed by Pavel Feldman.

* inspector/front-end/ProfilesPanel.js:
(WebInspector.ProfilesPanel.prototype.updateMainViewWidth):
* inspector/front-end/TimelineOverviewPane.js:
(WebInspector.TimelineOverviewPane.prototype.updateMainViewWidth):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/ProfilesPanel.js
trunk/Source/WebCore/inspector/front-end/TimelineOverviewPane.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (90734 => 90735)

--- trunk/Source/WebCore/ChangeLog	2011-07-11 11:55:04 UTC (rev 90734)
+++ trunk/Source/WebCore/ChangeLog	2011-07-11 11:58:56 UTC (rev 90735)
@@ -1,3 +1,15 @@
+2011-07-08  Mikhail Naganov  mnaga...@chromium.org
+
+Web Inspector: Fix resizing of sidebar pane in Timeline and Profile panels.
+https://bugs.webkit.org/show_bug.cgi?id=64161
+
+Reviewed by Pavel Feldman.
+
+* inspector/front-end/ProfilesPanel.js:
+(WebInspector.ProfilesPanel.prototype.updateMainViewWidth):
+* inspector/front-end/TimelineOverviewPane.js:
+(WebInspector.TimelineOverviewPane.prototype.updateMainViewWidth):
+
 2011-07-11  Pavel Feldman  pfeld...@google.com
 
 Web Inspector: [REGRESSION r89753-89754] highlight does not respect scroller location.


Modified: trunk/Source/WebCore/inspector/front-end/ProfilesPanel.js (90734 => 90735)

--- trunk/Source/WebCore/inspector/front-end/ProfilesPanel.js	2011-07-11 11:55:04 UTC (rev 90734)
+++ trunk/Source/WebCore/inspector/front-end/ProfilesPanel.js	2011-07-11 11:58:56 UTC (rev 90735)
@@ -641,7 +641,8 @@
 {
 this.welcomeView.element.style.left = width + px;
 this.profileViews.style.left = width + px;
-this.profileViewStatusBarItemsContainer.style.left = Math.max(155, width) + px;
+// Min width = number of buttons on the left * 31
+this.profileViewStatusBarItemsContainer.style.left = Math.max(6 * 31, width) + px;
 this.resize();
 },
 


Modified: trunk/Source/WebCore/inspector/front-end/TimelineOverviewPane.js (90734 => 90735)

--- trunk/Source/WebCore/inspector/front-end/TimelineOverviewPane.js	2011-07-11 11:55:04 UTC (rev 90734)
+++ trunk/Source/WebCore/inspector/front-end/TimelineOverviewPane.js	2011-07-11 11:58:56 UTC (rev 90735)
@@ -202,7 +202,8 @@
 updateMainViewWidth: function(width, records)
 {
 this._overviewGrid.element.style.left = width + px;
-this.statusBarFilters.style.left = Math.max(155, width) + px;
+// Min width = number of buttons on the left * 31
+this.statusBarFilters.style.left = Math.max(7 * 31, width) + px;
 },
 
 reset: function()






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [89666] trunk/Source/WebCore

2011-06-24 Thread mnaganov
Title: [89666] trunk/Source/WebCore








Revision 89666
Author mnaga...@chromium.org
Date 2011-06-24 04:47:36 -0700 (Fri, 24 Jun 2011)


Log Message
2011-06-23  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Pavel Feldman.

Web Inspector: [Chromium] Shorten DOMWindow URLs in heap profiles.
https://bugs.webkit.org/show_bug.cgi?id=63238

* inspector/front-end/DetailedHeapshotGridNodes.js:
(WebInspector.HeapSnapshotGridNode.prototype.hasHoverMessage.false.hoverMessage):
(WebInspector.HeapSnapshotGenericObjectNode):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.hoverMessage):
(WebInspector.HeapSnapshotGenericObjectNode.prototype._updateHasChildren):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.isDOMWindow):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.shortenWindowURL):
* inspector/front-end/DetailedHeapshotView.js:
(WebInspector.HeapSnapshotRetainingPathsList.prototype.showNext.pathFound):
(WebInspector.DetailedHeapshotView.prototype._getHoverAnchor):
(WebInspector.DetailedHeapshotView.prototype._showStringContentPopup.displayString):
(WebInspector.DetailedHeapshotView.prototype._showStringContentPopup):
* inspector/front-end/utilities.js:
():

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js
trunk/Source/WebCore/inspector/front-end/utilities.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (89665 => 89666)

--- trunk/Source/WebCore/ChangeLog	2011-06-24 11:18:50 UTC (rev 89665)
+++ trunk/Source/WebCore/ChangeLog	2011-06-24 11:47:36 UTC (rev 89666)
@@ -1,3 +1,25 @@
+2011-06-23  Mikhail Naganov  mnaga...@chromium.org
+
+Reviewed by Pavel Feldman.
+
+Web Inspector: [Chromium] Shorten DOMWindow URLs in heap profiles.
+https://bugs.webkit.org/show_bug.cgi?id=63238
+
+* inspector/front-end/DetailedHeapshotGridNodes.js:
+(WebInspector.HeapSnapshotGridNode.prototype.hasHoverMessage.false.hoverMessage):
+(WebInspector.HeapSnapshotGenericObjectNode):
+(WebInspector.HeapSnapshotGenericObjectNode.prototype.hoverMessage):
+(WebInspector.HeapSnapshotGenericObjectNode.prototype._updateHasChildren):
+(WebInspector.HeapSnapshotGenericObjectNode.prototype.isDOMWindow):
+(WebInspector.HeapSnapshotGenericObjectNode.prototype.shortenWindowURL):
+* inspector/front-end/DetailedHeapshotView.js:
+(WebInspector.HeapSnapshotRetainingPathsList.prototype.showNext.pathFound):
+(WebInspector.DetailedHeapshotView.prototype._getHoverAnchor):
+(WebInspector.DetailedHeapshotView.prototype._showStringContentPopup.displayString):
+(WebInspector.DetailedHeapshotView.prototype._showStringContentPopup):
+* inspector/front-end/utilities.js:
+():
+
 2011-06-24  Vsevolod Vlasov  vse...@chromium.org
 
 Reviewed by Pavel Feldman.


Modified: trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js (89665 => 89666)

--- trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js	2011-06-24 11:18:50 UTC (rev 89665)
+++ trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js	2011-06-24 11:47:36 UTC (rev 89666)
@@ -54,6 +54,13 @@
 node.dispose();
 },
 
+hasHoverMessage: false,
+
+hoverMessage: function(callback)
+{
+callback();
+},
+
 _populate: function(event)
 {
 this.removeEventListener(populate, this._populate, this);
@@ -179,6 +186,14 @@
 this._retainedSize = node.retainedSize;
 this.snapshotNodeId = node.id;
 this.snapshotNodeIndex = node.nodeIndex;
+if (this._type === string)
+this.hasHoverMessage = true;
+else if (this._type === object  this.isDOMWindow(this._name)) {
+var url = ""
+this._name = this.shortenWindowURL(this._name, false, url);
+this._url = url[0];
+this.hasHoverMessage = true;
+}
 };
 
 WebInspector.HeapSnapshotGenericObjectNode.prototype = {
@@ -254,6 +269,14 @@
 return this._enhanceData ? this._enhanceData(data) : data;
 },
 
+hoverMessage: function(callback)
+{
+if (this._type === string)
+callback(\ + this._name + \, console-formatted-string);
+else if (this._url)
+callback(this._url, console-formatted-object);
+},
+
 get _retainedSizePercent()
 {
 return this._retainedSize / this.dataGrid.snapshot.totalSize * 100.0;
@@ -271,6 +294,27 @@
 this.hasChildren = !isEmpty;
 }
 this._provider.isEmpty(isEmptyCallback.bind(this));
+},
+
+isDOMWindow: function(fullName)
+{
+return fullName.substr(0, 9) === DOMWindow;
+},
+
+shortenWindowURL: function(fullName, hasObjectId, fullURLPtr)
+{
+var 

[webkit-changes] [89562] trunk/Source/WebCore

2011-06-23 Thread mnaganov
Title: [89562] trunk/Source/WebCore








Revision 89562
Author mnaga...@chromium.org
Date 2011-06-23 05:51:18 -0700 (Thu, 23 Jun 2011)


Log Message
2011-06-23  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Yury Semikhatsky.

Web Inspector: [Chromium] Fix showing dominator leaf nodes after r89457
https://bugs.webkit.org/show_bug.cgi?id=63250

* inspector/front-end/DetailedHeapshotView.js:
* inspector/front-end/HeapSnapshot.js:
(WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.get isEmpty):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js
trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (89561 => 89562)

--- trunk/Source/WebCore/ChangeLog	2011-06-23 12:48:37 UTC (rev 89561)
+++ trunk/Source/WebCore/ChangeLog	2011-06-23 12:51:18 UTC (rev 89562)
@@ -1,3 +1,14 @@
+2011-06-23  Mikhail Naganov  mnaga...@chromium.org
+
+Reviewed by Yury Semikhatsky.
+
+Web Inspector: [Chromium] Fix showing dominator leaf nodes after r89457
+https://bugs.webkit.org/show_bug.cgi?id=63250
+
+* inspector/front-end/DetailedHeapshotView.js:
+* inspector/front-end/HeapSnapshot.js:
+(WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.get isEmpty):
+
 2011-06-23  Vsevolod Vlasov  vse...@chromium.org
 
 Reviewed by Yury Semikhatsky.


Modified: trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js (89561 => 89562)

--- trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-06-23 12:48:37 UTC (rev 89561)
+++ trunk/Source/WebCore/inspector/front-end/DetailedHeapshotView.js	2011-06-23 12:51:18 UTC (rev 89562)
@@ -912,7 +912,7 @@
 return;
 var row = event.target.enclosingNodeOrSelfWithNodeName(tr);
 var nodeItem = row._dataGridNode;
-if (!nodeItem)
+if (!nodeItem || !nodeItem.route)
 return;
 function expandRoute()
 {


Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js (89561 => 89562)

--- trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js	2011-06-23 12:48:37 UTC (rev 89561)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js	2011-06-23 12:51:18 UTC (rev 89562)
@@ -1075,13 +1075,25 @@
 {
 if (this._iterationOrder)
 return !this._iterationOrder.length;
+if (this._unfilteredIterationOrder  !this._filter)
+return !this._unfilteredIterationOrder.length;
 var iterator = this._iterator;
-if (!this._filter) {
+if (!this._unfilteredIterationOrder  !this._filter) {
 iterator.first();
 return !iterator.hasNext();
+} else if (!this._unfilteredIterationOrder) {
+for (iterator.first(); iterator.hasNext(); iterator.next())
+if (this._filter(iterator.item))
+return false;
+} else {
+var order = this._unfilteredIterationOrder.constructor === Array ?
+this._unfilteredIterationOrder : this._unfilteredIterationOrder.slice(0);
+for (var i = 0, l = order.length; i  l; ++i) {
+iterator.index = order[i];
+if (this._filter(iterator.item))
+return false;
+}
 }
-for (iterator.first(); iterator.hasNext(); iterator.next())
-if (this._filter(iterator.item)) return false;
 return true;
 },
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [89457] trunk/Source/WebCore

2011-06-22 Thread mnaganov
Title: [89457] trunk/Source/WebCore








Revision 89457
Author mnaga...@chromium.org
Date 2011-06-22 12:39:41 -0700 (Wed, 22 Jun 2011)


Log Message
2011-06-20  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Pavel Feldman.

Web Inspector: [Chromium] Improve speed of heap profiles dominators view.
https://bugs.webkit.org/show_bug.cgi?id=62979

* inspector/front-end/DetailedHeapshotGridNodes.js:
(WebInspector.HeapSnapshotDominatorObjectNode.prototype._createProvider):
* inspector/front-end/HeapSnapshot.js:
(WebInspector.HeapSnapshotArraySlice.prototype.item):
(WebInspector.HeapSnapshotArraySlice.prototype.slice):
(WebInspector.HeapSnapshot.prototype.dispose):
(WebInspector.HeapSnapshot.prototype._dominatedNodesOfNode):
(WebInspector.HeapSnapshot.prototype._buildReverseIndex.var):
(WebInspector.HeapSnapshot.prototype._buildReverseIndex):
(WebInspector.HeapSnapshot.prototype._buildRetainers):
(WebInspector.HeapSnapshot.prototype._buildNodeIndex):
(WebInspector.HeapSnapshot.prototype._buildDominatedNodes):
(WebInspector.HeapSnapshot.prototype._getDominatedIndex):
(WebInspector.HeapSnapshot.prototype.createNodesProviderForClass):
(WebInspector.HeapSnapshot.prototype.createNodesProviderForDominator):
(WebInspector.HeapSnapshotFilteredOrderedIterator):
(WebInspector.HeapSnapshotFilteredOrderedIterator.prototype._createIterationOrder):
(WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.get length):
(WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.serializeNextItems):
(WebInspector.HeapSnapshotNodesProvider):
* inspector/front-end/HeapSnapshotProxy.js:
(WebInspector.HeapSnapshotProxy.prototype.createNodesProviderForDominator):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js
trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js
trunk/Source/WebCore/inspector/front-end/HeapSnapshotProxy.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (89456 => 89457)

--- trunk/Source/WebCore/ChangeLog	2011-06-22 19:26:46 UTC (rev 89456)
+++ trunk/Source/WebCore/ChangeLog	2011-06-22 19:39:41 UTC (rev 89457)
@@ -1,3 +1,33 @@
+2011-06-20  Mikhail Naganov  mnaga...@chromium.org
+
+Reviewed by Pavel Feldman.
+
+Web Inspector: [Chromium] Improve speed of heap profiles dominators view.
+https://bugs.webkit.org/show_bug.cgi?id=62979
+
+* inspector/front-end/DetailedHeapshotGridNodes.js:
+(WebInspector.HeapSnapshotDominatorObjectNode.prototype._createProvider):
+* inspector/front-end/HeapSnapshot.js:
+(WebInspector.HeapSnapshotArraySlice.prototype.item):
+(WebInspector.HeapSnapshotArraySlice.prototype.slice):
+(WebInspector.HeapSnapshot.prototype.dispose):
+(WebInspector.HeapSnapshot.prototype._dominatedNodesOfNode):
+(WebInspector.HeapSnapshot.prototype._buildReverseIndex.var):
+(WebInspector.HeapSnapshot.prototype._buildReverseIndex):
+(WebInspector.HeapSnapshot.prototype._buildRetainers):
+(WebInspector.HeapSnapshot.prototype._buildNodeIndex):
+(WebInspector.HeapSnapshot.prototype._buildDominatedNodes):
+(WebInspector.HeapSnapshot.prototype._getDominatedIndex):
+(WebInspector.HeapSnapshot.prototype.createNodesProviderForClass):
+(WebInspector.HeapSnapshot.prototype.createNodesProviderForDominator):
+(WebInspector.HeapSnapshotFilteredOrderedIterator):
+(WebInspector.HeapSnapshotFilteredOrderedIterator.prototype._createIterationOrder):
+(WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.get length):
+(WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.serializeNextItems):
+(WebInspector.HeapSnapshotNodesProvider):
+* inspector/front-end/HeapSnapshotProxy.js:
+(WebInspector.HeapSnapshotProxy.prototype.createNodesProviderForDominator):
+
 2011-06-22  Sreeram Ramachandran  sree...@chromium.org
 
 Reviewed by Pavel Feldman.


Modified: trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js (89456 => 89457)

--- trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js	2011-06-22 19:26:46 UTC (rev 89456)
+++ trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js	2011-06-22 19:39:41 UTC (rev 89457)
@@ -700,12 +700,9 @@
 _createProvider: function(snapshot, nodeIndex)
 {
 var showHiddenData = WebInspector.DetailedHeapshotView.prototype.showHiddenData;
-return snapshot.createNodesProvider(
+return snapshot.createNodesProviderForDominator(nodeIndex,
 function (node) { +
- var dominatorIndex = node.dominatorIndex; +
- return dominatorIndex ===  + nodeIndex + 
-  dominatorIndex !== 

[webkit-changes] [88010] trunk

2011-06-03 Thread mnaganov
Title: [88010] trunk








Revision 88010
Author mnaga...@chromium.org
Date 2011-06-03 06:29:43 -0700 (Fri, 03 Jun 2011)


Log Message
2011-06-03  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Yury Semikhatsky.

Web Inspector: [Chromium] cpu-profiler-profiling layout test is flaky on Linux Debug.
https://bugs.webkit.org/show_bug.cgi?id=61533

Skip cpu-profiler-profiling in debug, implement a fast headless alternative.

* inspector/profiler/cpu-profiler-profiling-without-inspector-expected.txt: Added.
* inspector/profiler/cpu-profiler-profiling-without-inspector.html: Added.
* platform/chromium/test_expectations.txt:

2011-06-03  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Yury Semikhatsky.

Web Inspector: [Chromium] cpu-profiler-profiling layout test is flaky on Linux Debug.
https://bugs.webkit.org/show_bug.cgi?id=61533

Skip cpu-profiler-profiling in debug, implement a fast headless alternative.

* public/WebDevToolsAgent.h:
* src/WebDevToolsAgentImpl.cpp:
(WebKit::WebDevToolsAgentImpl::setJavaScriptProfilingEnabled):
* src/WebDevToolsAgentImpl.h:

2011-06-03  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Yury Semikhatsky.

Web Inspector: [Chromium] cpu-profiler-profiling layout test is flaky on Linux Debug.
https://bugs.webkit.org/show_bug.cgi?id=61533

Skip cpu-profiler-profiling in debug, implement a fast headless alternative.

* DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
(DRTDevToolsAgent::setJavaScriptProfilingEnabled):
* DumpRenderTree/chromium/DRTDevToolsAgent.h:
* DumpRenderTree/chromium/LayoutTestController.cpp:
(LayoutTestController::LayoutTestController):
(LayoutTestController::setJavaScriptProfilingEnabled):
* DumpRenderTree/chromium/LayoutTestController.h:
* DumpRenderTree/wx/LayoutTestControllerWx.cpp:
(LayoutTestController::setJavaScriptProfilingEnabled):
* WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
(WTR::LayoutTestController::setJavaScriptProfilingEnabled):
* WebKitTestRunner/InjectedBundle/LayoutTestController.h:

2011-06-03  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Yury Semikhatsky.

Web Inspector: [Chromium] cpu-profiler-profiling layout test is flaky on Linux Debug.
https://bugs.webkit.org/show_bug.cgi?id=61533

Skip cpu-profiler-profiling in debug, implement a fast headless alternative.

* WebProcess/InjectedBundle/API/c/WKBundleInspector.cpp:
(WKBundleInspectorSetJavaScriptProfilingEnabled):
* WebProcess/InjectedBundle/API/c/WKBundleInspector.h:
* WebProcess/WebPage/WebInspector.cpp:
(WebKit::WebInspector::setJavaScriptProfilingEnabled):
* WebProcess/WebPage/WebInspector.h:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/chromium/test_expectations.txt
trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/public/WebDevToolsAgent.h
trunk/Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp
trunk/Source/WebKit/chromium/src/WebDevToolsAgentImpl.h
trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleInspector.cpp
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleInspector.h
trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.cpp
trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.h
trunk/Tools/ChangeLog
trunk/Tools/DumpRenderTree/chromium/DRTDevToolsAgent.cpp
trunk/Tools/DumpRenderTree/chromium/DRTDevToolsAgent.h
trunk/Tools/DumpRenderTree/chromium/LayoutTestController.cpp
trunk/Tools/DumpRenderTree/chromium/LayoutTestController.h
trunk/Tools/DumpRenderTree/wx/LayoutTestControllerWx.cpp
trunk/Tools/WebKitTestRunner/InjectedBundle/LayoutTestController.cpp
trunk/Tools/WebKitTestRunner/InjectedBundle/LayoutTestController.h


Added Paths

trunk/LayoutTests/inspector/profiler/cpu-profiler-profiling-without-inspector-expected.txt
trunk/LayoutTests/inspector/profiler/cpu-profiler-profiling-without-inspector.html




Diff

Modified: trunk/LayoutTests/ChangeLog (88009 => 88010)

--- trunk/LayoutTests/ChangeLog	2011-06-03 12:43:26 UTC (rev 88009)
+++ trunk/LayoutTests/ChangeLog	2011-06-03 13:29:43 UTC (rev 88010)
@@ -1,3 +1,16 @@
+2011-06-03  Mikhail Naganov  mnaga...@chromium.org
+
+Reviewed by Yury Semikhatsky.
+
+Web Inspector: [Chromium] cpu-profiler-profiling layout test is flaky on Linux Debug.
+https://bugs.webkit.org/show_bug.cgi?id=61533
+
+Skip cpu-profiler-profiling in debug, implement a fast headless alternative.
+
+* inspector/profiler/cpu-profiler-profiling-without-inspector-expected.txt: Added.
+* inspector/profiler/cpu-profiler-profiling-without-inspector.html: Added.
+* platform/chromium/test_expectations.txt:
+
 2011-06-03  Nikolas Zimmermann  nzimmerm...@rim.com
 
 

[webkit-changes] [88044] trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-06-03 Thread mnaganov
Title: [88044] trunk/LayoutTests/platform/chromium/test_expectations.txt








Revision 88044
Author mnaga...@chromium.org
Date 2011-06-03 13:29:39 -0700 (Fri, 03 Jun 2011)


Log Message
[Chromium] Unreviewed test expectations update for inspector/profiler/cpu-profiler-profiling* on Linux. https://bugs.webkit.org/show_bug.cgi?id=61533

Modified Paths

trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (88043 => 88044)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-06-03 20:28:11 UTC (rev 88043)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-06-03 20:29:39 UTC (rev 88044)
@@ -3940,7 +3940,9 @@
 BUGCR84032 WIN : fast/dom/object-plugin-hides-properties.html = TIMEOUT PASS
 
 // Works slowly, we have an equivalent test that doesn't open Inspector and runs fast.
-WONTFIX LINUX DEBUG SKIP : inspector/profiler/cpu-profiler-profiling.html = CRASH TIMEOUT PASS
+BUGWK61533 LINUX DEBUG SKIP : inspector/profiler/cpu-profiler-profiling.html = CRASH TIMEOUT PASS
+BUGWK61533 LINUX : inspector/profiler/cpu-profiler-profiling.html = CRASH PASS
+BUGWK61533 LINUX : inspector/profiler/cpu-profiler-profiling-without-inspector.html = CRASH PASS
 
 BUGCR84093 VISTA : http/tests/history/redirect-200-refresh-2-seconds.pl = TIMEOUT PASS
 BUGCR84095 VISTA : svg/custom/use-detach.svg = TIMEOUT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87781] trunk/Source/WebKit/chromium

2011-06-01 Thread mnaganov
Title: [87781] trunk/Source/WebKit/chromium








Revision 87781
Author mnaga...@chromium.org
Date 2011-06-01 00:46:13 -0700 (Wed, 01 Jun 2011)


Log Message
2011-05-31  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Pavel Feldman.

Web Inspector [Chromium]: Put worker scripts into devtools_frontend.zip.
https://bugs.webkit.org/show_bug.cgi?id=61803

* WebKit.gyp:
* scripts/generate_devtools_zip.py:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/WebKit.gyp
trunk/Source/WebKit/chromium/scripts/generate_devtools_zip.py




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (87780 => 87781)

--- trunk/Source/WebKit/chromium/ChangeLog	2011-06-01 07:40:41 UTC (rev 87780)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-06-01 07:46:13 UTC (rev 87781)
@@ -1,3 +1,13 @@
+2011-05-31  Mikhail Naganov  mnaga...@chromium.org
+
+Reviewed by Pavel Feldman.
+
+Web Inspector [Chromium]: Put worker scripts into devtools_frontend.zip.
+https://bugs.webkit.org/show_bug.cgi?id=61803
+
+* WebKit.gyp:
+* scripts/generate_devtools_zip.py:
+
 2011-05-31  Kinuko Yasuda  kin...@chromium.org
 
 Reviewed by Kent Tamura.


Modified: trunk/Source/WebKit/chromium/WebKit.gyp (87780 => 87781)

--- trunk/Source/WebKit/chromium/WebKit.gyp	2011-06-01 07:40:41 UTC (rev 87780)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2011-06-01 07:46:13 UTC (rev 87781)
@@ -827,6 +827,12 @@
 'action_name': 'generate_devtools_zip',
 'script_name': 'scripts/generate_devtools_zip.py',
 'inspector_html': '../../WebCore/inspector/front-end/inspector.html',
+'workers_files': [
+'../../WebCore/inspector/front-end/HeapSnapshotWorker.js',
+'../../WebCore/inspector/front-end/_javascript_Formatter.js',
+'../../WebCore/inspector/front-end/ScriptFormatterWorker.js',
+'@(webinspector_uglifyjs_files)'
+],
 'inputs': [
 '@(_script_name)',
 'scripts/generate_devtools_html.py',
@@ -834,6 +840,7 @@
 '@(devtools_files)',
 '@(webinspector_files)',
 '(SHARED_INTERMEDIATE_DIR)/webcore/InspectorBackendStub.js',
+'@(_workers_files)',
 '@(webinspector_image_files)',
 '@(devtools_image_files)',
 ],
@@ -849,6 +856,7 @@
 'outputs': ['(PRODUCT_DIR)/devtools_frontend.zip'],
 'action': ['python', '@(_script_name)', '@(_inspector_html)',
  '--devtools-files', '@(devtools_files)',
+ '--workers-files', '@(_workers_files)',
  '--search-path', '@(_search_path)',
  '--image-search-path', '@(_image_search_path)',
  '--output', '@(_outputs)'],


Modified: trunk/Source/WebKit/chromium/scripts/generate_devtools_zip.py (87780 => 87781)

--- trunk/Source/WebKit/chromium/scripts/generate_devtools_zip.py	2011-06-01 07:40:41 UTC (rev 87780)
+++ trunk/Source/WebKit/chromium/scripts/generate_devtools_zip.py	2011-06-01 07:46:13 UTC (rev 87781)
@@ -47,10 +47,11 @@
 
 
 class ParsedArgs:
-def __init__(self, inspector_html, devtools_files, search_dirs,
- image_search_dirs, output_filename):
+def __init__(self, inspector_html, devtools_files, workers_files,
+ search_dirs, image_search_dirs, output_filename):
 self.inspector_html = inspector_html
 self.devtools_files = devtools_files
+self.workers_files = workers_files
 self.search_dirs = search_dirs
 self.image_search_dirs = image_search_dirs
 self.output_filename = output_filename
@@ -60,16 +61,18 @@
 inspector_html = argv[0]
 
 devtools_files_position = argv.index('--devtools-files')
+workers_files_position = argv.index('--workers-files')
 search_path_position = argv.index('--search-path')
 image_search_path_position = argv.index('--image-search-path')
 output_position = argv.index('--output')
 
-devtools_files = argv[devtools_files_position + 1:search_path_position]
+devtools_files = argv[devtools_files_position + 1:workers_files_position]
+workers_files = argv[workers_files_position + 1:search_path_position]
 search_dirs = argv[search_path_position + 1:image_search_path_position]
 image_search_dirs = argv[image_search_path_position + 1:output_position]
 
-return ParsedArgs(inspector_html, devtools_files, search_dirs,
-  image_search_dirs, argv[output_position + 1])
+return ParsedArgs(inspector_html, devtools_files, workers_files,
+  search_dirs, image_search_dirs, argv[output_position + 1])
 
 

[webkit-changes] [87786] trunk/Source/WebKit/chromium

2011-06-01 Thread mnaganov
Title: [87786] trunk/Source/WebKit/chromium








Revision 87786
Author mnaga...@chromium.org
Date 2011-06-01 01:47:03 -0700 (Wed, 01 Jun 2011)


Log Message
2011-05-31  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Yury Semikhatsky.

Web Inspector [Chromium]: Put worker scripts into devtools_frontend.zip.
https://bugs.webkit.org/show_bug.cgi?id=61803

* WebKit.gyp:
* scripts/generate_devtools_zip.py:

Modified Paths

trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/WebKit.gyp
trunk/Source/WebKit/chromium/scripts/generate_devtools_zip.py




Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (87785 => 87786)

--- trunk/Source/WebKit/chromium/ChangeLog	2011-06-01 08:29:22 UTC (rev 87785)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-06-01 08:47:03 UTC (rev 87786)
@@ -1,3 +1,13 @@
+2011-06-01  Mikhail Naganov  mnaga...@chromium.org
+
+Reviewed by Yury Semikhatsky.
+
+Web Inspector [Chromium]: Put worker scripts into devtools_frontend.zip.
+https://bugs.webkit.org/show_bug.cgi?id=61803
+
+* WebKit.gyp:
+* scripts/generate_devtools_zip.py:
+
 2011-06-01  Sheriff Bot  webkit.review@gmail.com
 
 Unreviewed, rolling out r87781.


Modified: trunk/Source/WebKit/chromium/WebKit.gyp (87785 => 87786)

--- trunk/Source/WebKit/chromium/WebKit.gyp	2011-06-01 08:29:22 UTC (rev 87785)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2011-06-01 08:47:03 UTC (rev 87786)
@@ -827,6 +827,12 @@
 'action_name': 'generate_devtools_zip',
 'script_name': 'scripts/generate_devtools_zip.py',
 'inspector_html': '../../WebCore/inspector/front-end/inspector.html',
+'workers_files': [
+'../../WebCore/inspector/front-end/HeapSnapshotWorker.js',
+'../../WebCore/inspector/front-end/_javascript_Formatter.js',
+'../../WebCore/inspector/front-end/ScriptFormatterWorker.js',
+'@(webinspector_uglifyjs_files)'
+],
 'inputs': [
 '@(_script_name)',
 'scripts/generate_devtools_html.py',
@@ -834,6 +840,7 @@
 '@(devtools_files)',
 '@(webinspector_files)',
 '(SHARED_INTERMEDIATE_DIR)/webcore/InspectorBackendStub.js',
+'@(_workers_files)',
 '@(webinspector_image_files)',
 '@(devtools_image_files)',
 ],
@@ -849,6 +856,7 @@
 'outputs': ['(PRODUCT_DIR)/devtools_frontend.zip'],
 'action': ['python', '@(_script_name)', '@(_inspector_html)',
  '--devtools-files', '@(devtools_files)',
+ '--workers-files', '@(_workers_files)',
  '--search-path', '@(_search_path)',
  '--image-search-path', '@(_image_search_path)',
  '--output', '@(_outputs)'],


Modified: trunk/Source/WebKit/chromium/scripts/generate_devtools_zip.py (87785 => 87786)

--- trunk/Source/WebKit/chromium/scripts/generate_devtools_zip.py	2011-06-01 08:29:22 UTC (rev 87785)
+++ trunk/Source/WebKit/chromium/scripts/generate_devtools_zip.py	2011-06-01 08:47:03 UTC (rev 87786)
@@ -47,10 +47,11 @@
 
 
 class ParsedArgs:
-def __init__(self, inspector_html, devtools_files, search_dirs,
- image_search_dirs, output_filename):
+def __init__(self, inspector_html, devtools_files, workers_files,
+ search_dirs, image_search_dirs, output_filename):
 self.inspector_html = inspector_html
 self.devtools_files = devtools_files
+self.workers_files = workers_files
 self.search_dirs = search_dirs
 self.image_search_dirs = image_search_dirs
 self.output_filename = output_filename
@@ -60,16 +61,18 @@
 inspector_html = argv[0]
 
 devtools_files_position = argv.index('--devtools-files')
+workers_files_position = argv.index('--workers-files')
 search_path_position = argv.index('--search-path')
 image_search_path_position = argv.index('--image-search-path')
 output_position = argv.index('--output')
 
-devtools_files = argv[devtools_files_position + 1:search_path_position]
+devtools_files = argv[devtools_files_position + 1:workers_files_position]
+workers_files = argv[workers_files_position + 1:search_path_position]
 search_dirs = argv[search_path_position + 1:image_search_path_position]
 image_search_dirs = argv[image_search_path_position + 1:output_position]
 
-return ParsedArgs(inspector_html, devtools_files, search_dirs,
-  image_search_dirs, argv[output_position + 1])
+return ParsedArgs(inspector_html, devtools_files, workers_files,
+  search_dirs, image_search_dirs, 

[webkit-changes] [87481] trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-05-27 Thread mnaganov
Title: [87481] trunk/LayoutTests/platform/chromium/test_expectations.txt








Revision 87481
Author mnaga...@chromium.org
Date 2011-05-27 00:45:34 -0700 (Fri, 27 May 2011)


Log Message
[Chromium] Unreviewed, mark editing/pasteboard/interchange-newline-2.html as failing on Linux

Modified Paths

trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (87480 => 87481)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 07:26:34 UTC (rev 87480)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 07:45:34 UTC (rev 87481)
@@ -4022,3 +4022,5 @@
 
 BUGCR84093 VISTA : http/tests/history/redirect-200-refresh-2-seconds.pl = TIMEOUT PASS
 BUGCR84095 VISTA : svg/custom/use-detach.svg = TIMEOUT PASS
+
+BUGWK61611 LINUX : editing/pasteboard/interchange-newline-2.html = TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87482] trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-05-27 Thread mnaganov
Title: [87482] trunk/LayoutTests/platform/chromium/test_expectations.txt








Revision 87482
Author mnaga...@chromium.org
Date 2011-05-27 00:54:44 -0700 (Fri, 27 May 2011)


Log Message
[Chromium] Unreviewed, suppress http/tests/local/formdata/ test crashes after r87460

Modified Paths

trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (87481 => 87482)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 07:45:34 UTC (rev 87481)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 07:54:44 UTC (rev 87482)
@@ -4024,3 +4024,8 @@
 BUGCR84095 VISTA : svg/custom/use-detach.svg = TIMEOUT PASS
 
 BUGWK61611 LINUX : editing/pasteboard/interchange-newline-2.html = TEXT
+
+BUGWK61613 WIN : http/tests/local/formdata/form-data-with-unknown-file-extension.html = CRASH
+BUGWK61613 WIN : http/tests/local/formdata/send-form-data-constructed-from-form.html = CRASH
+BUGWK61613 WIN : http/tests/local/formdata/send-form-data.html = CRASH
+BUGWK61613 WIN : http/tests/local/formdata/upload-events.html = CRASH






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87484] trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-05-27 Thread mnaganov
Title: [87484] trunk/LayoutTests/platform/chromium/test_expectations.txt








Revision 87484
Author mnaga...@chromium.org
Date 2011-05-27 01:01:49 -0700 (Fri, 27 May 2011)


Log Message
[Chromium] Unreviewed, mark editing/pasteboard/interchange-newline-2.html as failing on Windows (bots are slow :(

Modified Paths

trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (87483 => 87484)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 07:56:25 UTC (rev 87483)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 08:01:49 UTC (rev 87484)
@@ -4023,7 +4023,7 @@
 BUGCR84093 VISTA : http/tests/history/redirect-200-refresh-2-seconds.pl = TIMEOUT PASS
 BUGCR84095 VISTA : svg/custom/use-detach.svg = TIMEOUT PASS
 
-BUGWK61611 LINUX : editing/pasteboard/interchange-newline-2.html = TEXT
+BUGWK61611 LINUX WIN : editing/pasteboard/interchange-newline-2.html = TEXT
 
 BUGWK61613 WIN : http/tests/local/formdata/form-data-with-unknown-file-extension.html = CRASH
 BUGWK61613 WIN : http/tests/local/formdata/send-form-data-constructed-from-form.html = CRASH






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87501] trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-05-27 Thread mnaganov
Title: [87501] trunk/LayoutTests/platform/chromium/test_expectations.txt








Revision 87501
Author mnaga...@chromium.org
Date 2011-05-27 05:43:10 -0700 (Fri, 27 May 2011)


Log Message
[Chromium] Unreveiwed, suppress editing/pasteboard/smart-paste-003.html on Win after r87495

Modified Paths

trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (87500 => 87501)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 12:42:43 UTC (rev 87500)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 12:43:10 UTC (rev 87501)
@@ -4023,3 +4023,5 @@
 BUGWK61613 WIN : http/tests/local/formdata/send-form-data-constructed-from-form.html = CRASH
 BUGWK61613 WIN : http/tests/local/formdata/send-form-data.html = CRASH
 BUGWK61613 WIN : http/tests/local/formdata/upload-events.html = CRASH
+
+BUGWK61624 WIN : editing/pasteboard/smart-paste-003.html = TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87502] trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-05-27 Thread mnaganov
Title: [87502] trunk/LayoutTests/platform/chromium/test_expectations.txt








Revision 87502
Author mnaga...@chromium.org
Date 2011-05-27 05:46:35 -0700 (Fri, 27 May 2011)


Log Message
[Chromium] Unreviewed, suppress editing/pasteboard/smart-paste-004.html on Win after r87496

Modified Paths

trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (87501 => 87502)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 12:43:10 UTC (rev 87501)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-27 12:46:35 UTC (rev 87502)
@@ -4025,3 +4025,4 @@
 BUGWK61613 WIN : http/tests/local/formdata/upload-events.html = CRASH
 
 BUGWK61624 WIN : editing/pasteboard/smart-paste-003.html = TEXT
+BUGWK61624 WIN : editing/pasteboard/smart-paste-004.html = TEXT






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87538] trunk/Source/WebCore

2011-05-27 Thread mnaganov
Title: [87538] trunk/Source/WebCore








Revision 87538
Author mnaga...@chromium.org
Date 2011-05-27 12:52:26 -0700 (Fri, 27 May 2011)


Log Message
2011-05-27  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Pavel Feldman.

Web Inspector: [Chromium] Add support for showing URL of DOMWindow in heap profiles.
https://bugs.webkit.org/show_bug.cgi?id=61177

* inspector/front-end/HeapSnapshot.js:
(WebInspector.HeapSnapshotNode.prototype.get className):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js




Diff

Modified: trunk/Source/WebCore/ChangeLog (87537 => 87538)

--- trunk/Source/WebCore/ChangeLog	2011-05-27 19:50:35 UTC (rev 87537)
+++ trunk/Source/WebCore/ChangeLog	2011-05-27 19:52:26 UTC (rev 87538)
@@ -1,3 +1,13 @@
+2011-05-27  Mikhail Naganov  mnaga...@chromium.org
+
+Reviewed by Pavel Feldman.
+
+Web Inspector: [Chromium] Add support for showing URL of DOMWindow in heap profiles.
+https://bugs.webkit.org/show_bug.cgi?id=61177
+
+* inspector/front-end/HeapSnapshot.js:
+(WebInspector.HeapSnapshotNode.prototype.get className):
+
 2011-05-27  Nikolas Zimmermann  nzimmerm...@rim.com
 
 Rubber-stamped by Rob Buis.


Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js (87537 => 87538)

--- trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js	2011-05-27 19:50:35 UTC (rev 87537)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js	2011-05-27 19:52:26 UTC (rev 87538)
@@ -492,8 +492,10 @@
 switch (this.type) {
 case hidden:
 return WebInspector.UIString((system));
-case object:
-return this.name;
+case object: {
+var commentPos = this.name.indexOf(/);
+return commentPos !== -1 ? this.name.substring(0, commentPos).trimRight() : this.name;
+}
 case native: {
 var entitiesCountPos = this.name.indexOf(/);
 return entitiesCountPos !== -1 ? this.name.substring(0, entitiesCountPos).trimRight() : this.name;






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87379] trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-05-26 Thread mnaganov
Title: [87379] trunk/LayoutTests/platform/chromium/test_expectations.txt








Revision 87379
Author mnaga...@chromium.org
Date 2011-05-26 05:54:31 -0700 (Thu, 26 May 2011)


Log Message
[Chromium] Unreviewed test expectations update. Mark 3 tests as flaky

Modified Paths

trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (87378 => 87379)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-26 12:48:19 UTC (rev 87378)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-26 12:54:31 UTC (rev 87379)
@@ -4143,3 +4143,7 @@
 
 // New test added in r87324
 BUGCR83994 WIN : platform/win/plugins/call-_javascript_-that-destroys-plugin.html = CRASH
+
+BUGWK61519 WIN LINUX : inspector/debugger/scripts-panel.html = TEXT PASS
+BUGCR84031 MAC LINUX : storage/domstorage/sessionstorage/delete-removal.html = TIMEOUT PASS
+BUGCR84032 WIN : fast/dom/object-plugin-hides-properties.html = TIMEOUT PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87386] trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-05-26 Thread mnaganov
Title: [87386] trunk/LayoutTests/platform/chromium/test_expectations.txt








Revision 87386
Author mnaga...@chromium.org
Date 2011-05-26 08:01:44 -0700 (Thu, 26 May 2011)


Log Message
[Chromium] Unreviewed. Mark inspector/profiler/cpu-profiler-profiling.html as flaky on Linux

Modified Paths

trunk/LayoutTests/platform/chromium/test_expectations.txt




Diff

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (87385 => 87386)

--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-26 14:54:04 UTC (rev 87385)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-05-26 15:01:44 UTC (rev 87386)
@@ -4147,3 +4147,5 @@
 BUGWK61519 WIN LINUX : inspector/debugger/scripts-panel.html = TEXT PASS
 BUGCR84031 MAC LINUX : storage/domstorage/sessionstorage/delete-removal.html = TIMEOUT PASS
 BUGCR84032 WIN : fast/dom/object-plugin-hides-properties.html = TIMEOUT PASS
+
+BUGWK61533 LINUX : inspector/profiler/cpu-profiler-profiling.html = CRASH PASS






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes


[webkit-changes] [87146] trunk/Source

2011-05-24 Thread mnaganov
Title: [87146] trunk/Source








Revision 87146
Author mnaga...@chromium.org
Date 2011-05-24 07:17:10 -0700 (Tue, 24 May 2011)


Log Message
2011-05-24  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Yury Semikhatsky.

Web Inspector: Reorganize InspectorBackendDispatch code to eliminate duplication
https://bugs.webkit.org/show_bug.cgi?id=61300

* inspector/CodeGeneratorInspector.pm:

2011-05-24  Mikhail Naganov  mnaga...@chromium.org

Reviewed by Yury Semikhatsky.

Web Inspector: Reorganize InspectorBackendDispatch code to eliminate duplication
https://bugs.webkit.org/show_bug.cgi?id=61300

* src/WebDevToolsAgentImpl.cpp:
(WebKit::WebDevToolsAgent::shouldInterruptForMessage):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/inspector/CodeGeneratorInspector.pm
trunk/Source/WebKit/chromium/ChangeLog
trunk/Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (87145 => 87146)

--- trunk/Source/WebCore/ChangeLog	2011-05-24 12:38:13 UTC (rev 87145)
+++ trunk/Source/WebCore/ChangeLog	2011-05-24 14:17:10 UTC (rev 87146)
@@ -1,3 +1,12 @@
+2011-05-24  Mikhail Naganov  mnaga...@chromium.org
+
+Reviewed by Yury Semikhatsky.
+
+Web Inspector: Reorganize InspectorBackendDispatch code to eliminate duplication
+https://bugs.webkit.org/show_bug.cgi?id=61300
+
+* inspector/CodeGeneratorInspector.pm:
+
 2011-05-23  Yury Semikhatsky  yu...@chromium.org
 
 Reviewed by Adam Barth.


Modified: trunk/Source/WebCore/inspector/CodeGeneratorInspector.pm (87145 => 87146)

--- trunk/Source/WebCore/inspector/CodeGeneratorInspector.pm	2011-05-24 12:38:13 UTC (rev 87145)
+++ trunk/Source/WebCore/inspector/CodeGeneratorInspector.pm	2011-05-24 14:17:10 UTC (rev 87146)
@@ -416,11 +416,11 @@
 my $function = shift;
 
 my $functionName = $function-signature-name;
-my $fullQualifiedFunctionName = $interface-name . _ . $function-signature-name;
-my $fullQualifiedFunctionNameDot = $interface-name . . . $function-signature-name;
+my $fullQualifiedFunctionName = $interface-name . _ . $functionName;
+my $fullQualifiedFunctionNameDot = $interface-name . . . $functionName;
 
-push(@backendConstantDeclarations, static const char* ${fullQualifiedFunctionName}Cmd;);
-push(@backendConstantDefinitions, const char* ${backendClassName}::${fullQualifiedFunctionName}Cmd = \${fullQualifiedFunctionNameDot}\;);
+push(@backendConstantDeclarations, k${fullQualifiedFunctionName}Cmd,);
+push(@backendConstantDefinitions, \${fullQualifiedFunctionNameDot}\,);
 
 map($backendTypes{$_-type} = 1, @{$function-parameters}); # register required types
 my @inArgs = grep($_-direction eq in, @{$function-parameters});
@@ -457,13 +457,15 @@
 my $indent = ;
 if (scalar(@inArgs)) {
 push(@function, if (RefPtrInspectorObject paramsContainer = requestMessageObject-getObject(\params\)) {);
+push(@function, InspectorObject* paramsContainerPtr = paramsContainer.get(););
+push(@function, InspectorArray* protocolErrorsPtr = protocolErrors.get(););
 
 foreach my $parameter (@inArgs) {
 my $name = $parameter-name;
 my $type = $parameter-type;
 my $typeString = camelCase($parameter-type);
 my $optional = $parameter-extendedAttributes-{optional} ? true : false;
-push(@function,  . typeTraits($type, variable) .  in_$name = get$typeString(paramsContainer.get(), \$name\, $optional, protocolErrors.get()););
+push(@function,  . typeTraits($type, variable) .  in_$name = get$typeString(paramsContainerPtr, \$name\, $optional, protocolErrorsPtr););
 }
 push(@function, );
 $indent = ;
@@ -481,41 +483,52 @@
 push(@function, } else);
 push(@function, protocolErrors-pushString(\'params' property with type 'object' was not found.\););
 }
-
 push(@function, );
-push(@function, // use InspectorFrontend as a marker of WebInspector availability);
-push(@function, );
-push(@function, if (protocolErrors-length()) {);
-push(@function, reportProtocolError(callId, InvalidParams, protocolErrors););
-push(@function, return;);
-push(@function, });
-push(@function, );
-push(@function, if (error.length()) {);
-push(@function, reportProtocolError(callId, ServerError, error););
-push(@function, return;);
-push(@function, });
-push(@function, );
-push(@function, RefPtrInspectorObject responseMessage = InspectorObject::create(););
 push(@function, RefPtrInspectorObject result = InspectorObject::create(););
-foreach my $parameter (@outArgs) {
-my $offset = ;
-# Don't add optional boolean parameter to the result unless it is