[webkit-changes] [157284] trunk/Tools

2013-10-10 Thread kov
Title: [157284] trunk/Tools








Revision 157284
Author k...@webkit.org
Date 2013-10-10 18:47:38 -0700 (Thu, 10 Oct 2013)


Log Message
webkit-patch failure-reason has a quite low limit for 'too many failures'
https://bugs.webkit.org/show_bug.cgi?id=122556

Patch by Gustavo Noronha Silva  on 2013-10-10
Reviewed by Darin Adler.

* Scripts/webkitpy/tool/commands/queries.py:
(FailureReason._explain_failures_for_builder): adjust the number of too many failures
to match what the layout test runners use these days.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitpy/tool/commands/queries.py




Diff

Modified: trunk/Tools/ChangeLog (157283 => 157284)

--- trunk/Tools/ChangeLog	2013-10-11 01:41:52 UTC (rev 157283)
+++ trunk/Tools/ChangeLog	2013-10-11 01:47:38 UTC (rev 157284)
@@ -1,5 +1,16 @@
 2013-10-10  Gustavo Noronha Silva  
 
+webkit-patch failure-reason has a quite low limit for 'too many failures'
+https://bugs.webkit.org/show_bug.cgi?id=122556
+
+Reviewed by Darin Adler.
+
+* Scripts/webkitpy/tool/commands/queries.py:
+(FailureReason._explain_failures_for_builder): adjust the number of too many failures
+to match what the layout test runners use these days.
+
+2013-10-10  Gustavo Noronha Silva  
+
 webkit-patch failure-reason should allow specifying failures one is interested in
 https://bugs.webkit.org/show_bug.cgi?id=122554
 


Modified: trunk/Tools/Scripts/webkitpy/tool/commands/queries.py (157283 => 157284)

--- trunk/Tools/Scripts/webkitpy/tool/commands/queries.py	2013-10-11 01:41:52 UTC (rev 157283)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/queries.py	2013-10-11 01:47:38 UTC (rev 157284)
@@ -290,9 +290,9 @@
 print "No results build %s (r%s)" % (build._number, build.revision())
 continue
 failures = set(latest_results.failing_tests())
-if len(failures) >= 20:
+if len(failures) >= 500:
 # FIXME: We may need to move this logic into the LayoutTestResults class.
-# The buildbot stops runs after 20 failures so we don't have full results to work with here.
+# The buildbot stops runs after 500 failures so we don't have full results to work with here.
 print "Too many failures in build %s (r%s), ignoring." % (build._number, build.revision())
 continue
 fixed_results = results_to_explain - failures






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


[webkit-changes] [157283] trunk/Tools

2013-10-10 Thread kov
Title: [157283] trunk/Tools








Revision 157283
Author k...@webkit.org
Date 2013-10-10 18:41:52 -0700 (Thu, 10 Oct 2013)


Log Message
webkit-patch failure-reason should allow specifying failures one is interested in
https://bugs.webkit.org/show_bug.cgi?id=122554

Patch by Gustavo Noronha Silva  on 2013-10-10
Reviewed by Darin Adler.

* Scripts/webkitpy/tool/commands/queries.py:
(FailureReason):
(FailureReason._explain_failures_for_builder): keep track of explained failures and drop out of the
loop if the ones we're interested in been explained.
(FailureReason._done_explaining): check the failures we're interested in have been explained, if any.
(FailureReason.execute): initialize failures to explain and the explained set.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitpy/tool/commands/queries.py




Diff

Modified: trunk/Tools/ChangeLog (157282 => 157283)

--- trunk/Tools/ChangeLog	2013-10-11 01:14:04 UTC (rev 157282)
+++ trunk/Tools/ChangeLog	2013-10-11 01:41:52 UTC (rev 157283)
@@ -1,3 +1,17 @@
+2013-10-10  Gustavo Noronha Silva  
+
+webkit-patch failure-reason should allow specifying failures one is interested in
+https://bugs.webkit.org/show_bug.cgi?id=122554
+
+Reviewed by Darin Adler.
+
+* Scripts/webkitpy/tool/commands/queries.py:
+(FailureReason):
+(FailureReason._explain_failures_for_builder): keep track of explained failures and drop out of the
+loop if the ones we're interested in been explained.
+(FailureReason._done_explaining): check the failures we're interested in have been explained, if any.
+(FailureReason.execute): initialize failures to explain and the explained set.
+
 2013-10-10  Filip Pizlo  
 
 Make sure that DataTypes.h is in the binary drop.


Modified: trunk/Tools/Scripts/webkitpy/tool/commands/queries.py (157282 => 157283)

--- trunk/Tools/Scripts/webkitpy/tool/commands/queries.py	2013-10-11 01:14:04 UTC (rev 157282)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/queries.py	2013-10-11 01:41:52 UTC (rev 157283)
@@ -247,6 +247,7 @@
 class FailureReason(Command):
 name = "failure-reason"
 help_text = "Lists revisions where individual test failures started at %s" % config_urls.buildbot_url
+arguments_names = "[LAYOUT_TESTS]"
 
 def _blame_line_for_revision(self, revision):
 try:
@@ -277,7 +278,7 @@
 results_to_explain = set(layout_test_results.failing_tests())
 last_build_with_results = build
 print "Starting at %s" % revision_to_test
-while results_to_explain:
+while results_to_explain and not self._done_explaining():
 revision_to_test -= 1
 new_build = builder.build_for_revision(revision_to_test, allow_failed_lookups=True)
 if not new_build:
@@ -299,6 +300,7 @@
 print "No change in build %s (r%s), %s unexplained failures (%s in this build)" % (build._number, build.revision(), len(results_to_explain), len(failures))
 last_build_with_results = build
 continue
+self.explained_failures.update(fixed_results)
 regression_window = RegressionWindow(build, last_build_with_results)
 self._print_blame_information_for_transition(regression_window, fixed_results)
 last_build_with_results = build
@@ -321,9 +323,17 @@
 if status["name"] == chosen_name:
 return (self._tool.buildbot.builder_with_name(chosen_name), status["built_revision"])
 
+def _done_explaining(self):
+if not self.failures_to_explain:
+return False
+
+return self.explained_failures.issuperset(self.failures_to_explain)
+
 def execute(self, options, args, tool):
 (builder, latest_revision) = self._builder_to_explain()
 start_revision = self._tool.user.prompt("Revision to walk backwards from? [%s] " % latest_revision) or latest_revision
+self.failures_to_explain = args
+self.explained_failures = set()
 if not start_revision:
 print "Revision required."
 return 1






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


[webkit-changes] [157259] trunk/LayoutTests

2013-10-10 Thread kov
Title: [157259] trunk/LayoutTests








Revision 157259
Author k...@webkit.org
Date 2013-10-10 15:16:20 -0700 (Thu, 10 Oct 2013)


Log Message
Unreviewed gardening. Add timeout annotation to gtk-wk2-specific expectation for
editing/spelling/spellcheck-paste.html.

* platform/gtk-wk2/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk-wk2/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157258 => 157259)

--- trunk/LayoutTests/ChangeLog	2013-10-10 22:03:25 UTC (rev 157258)
+++ trunk/LayoutTests/ChangeLog	2013-10-10 22:16:20 UTC (rev 157259)
@@ -1,3 +1,10 @@
+2013-10-10  Gustavo Noronha Silva  
+
+Unreviewed gardening. Add timeout annotation to gtk-wk2-specific expectation for
+editing/spelling/spellcheck-paste.html.
+
+* platform/gtk-wk2/TestExpectations:
+
 2013-10-10  Marcelo Morais  
 
 Web Inspector: Remove the old front-end from WebKit


Modified: trunk/LayoutTests/platform/gtk-wk2/TestExpectations (157258 => 157259)

--- trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-10 22:03:25 UTC (rev 157258)
+++ trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-10 22:16:20 UTC (rev 157259)
@@ -120,7 +120,7 @@
 
 # Implement testRunner.setAsynchronousSpellCheckingEnabled
 # http://webkit.org/b/81042
-webkit.org/b/81042 editing/spelling/spellcheck-paste.html [ Failure ]
+webkit.org/b/81042 editing/spelling/spellcheck-paste.html [ Timeout Failure ]
 webkit.org/b/81042 editing/spelling/spellcheck-paste-disabled.html [ Failure ]
 
 # Implement testRunner.numberOfPendingGeolocationPermissionRequests()






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


[webkit-changes] [157233] trunk/LayoutTests

2013-10-10 Thread kov
Title: [157233] trunk/LayoutTests








Revision 157233
Author k...@webkit.org
Date 2013-10-10 11:14:51 -0700 (Thu, 10 Oct 2013)


Log Message
Unreviewed gardening. plugins/document-open.html will some times timeout.

* platform/gtk-wk2/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk-wk2/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157232 => 157233)

--- trunk/LayoutTests/ChangeLog	2013-10-10 17:54:47 UTC (rev 157232)
+++ trunk/LayoutTests/ChangeLog	2013-10-10 18:14:51 UTC (rev 157233)
@@ -1,3 +1,9 @@
+2013-10-10  Gustavo Noronha Silva  
+
+Unreviewed gardening. plugins/document-open.html will some times timeout.
+
+* platform/gtk-wk2/TestExpectations:
+
 2013-10-09  Chris Fleizach  
 
 AX: VoiceOver speaking too much when group elements with tabindex=-1 are used


Modified: trunk/LayoutTests/platform/gtk-wk2/TestExpectations (157232 => 157233)

--- trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-10 17:54:47 UTC (rev 157232)
+++ trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-10 18:14:51 UTC (rev 157233)
@@ -194,7 +194,7 @@
 # Crashing tests
 #
 
-Bug(GTK) plugins/document-open.html [ Crash ]
+Bug(GTK) plugins/document-open.html [ Crash Timeout ]
 
 # Fix for https://bugs.webkit.org/show_bug.cgi?id=97192 introduces this regression
 webkit.org/b/102776 media/track/track-cue-container-rendering-position.html [ Crash ]






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


[webkit-changes] [157232] trunk/Tools

2013-10-10 Thread kov
Title: [157232] trunk/Tools








Revision 157232
Author k...@webkit.org
Date 2013-10-10 10:54:47 -0700 (Thu, 10 Oct 2013)


Log Message
Unreviewed gardening, the inspector protocol timeouts are also affecting TestInspectorServer.

* Scripts/run-gtk-tests:
(TestRunner): skip TestInspectorServer.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/run-gtk-tests




Diff

Modified: trunk/Tools/ChangeLog (157231 => 157232)

--- trunk/Tools/ChangeLog	2013-10-10 17:41:24 UTC (rev 157231)
+++ trunk/Tools/ChangeLog	2013-10-10 17:54:47 UTC (rev 157232)
@@ -1,3 +1,10 @@
+2013-10-10  Gustavo Noronha Silva  
+
+Unreviewed gardening, the inspector protocol timeouts are also affecting TestInspectorServer.
+
+* Scripts/run-gtk-tests:
+(TestRunner): skip TestInspectorServer.
+
 2013-10-10  Andres Gomez  
 
 [GTK] Provide search functionality to MiniBrowser


Modified: trunk/Tools/Scripts/run-gtk-tests (157231 => 157232)

--- trunk/Tools/Scripts/run-gtk-tests	2013-10-10 17:41:24 UTC (rev 157231)
+++ trunk/Tools/Scripts/run-gtk-tests	2013-10-10 17:54:47 UTC (rev 157232)
@@ -84,6 +84,7 @@
 SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.ResizeReversePaginatedWebView", "Test fails", 120305),
 SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.ScrollPinningBehaviors", "Test fails", 120306),
 SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.TerminateTwice", "Test causes crash on the next test", 121970),
+SkippedTest("WebKit2APITests/TestInspectorServer", SkippedTest.ENTIRE_SUITE, "Timing out on the bot", 122571),
 ]
 
 def __init__(self, options, tests=[]):






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


[webkit-changes] [157229] trunk/LayoutTests

2013-10-10 Thread kov
Title: [157229] trunk/LayoutTests








Revision 157229
Author k...@webkit.org
Date 2013-10-10 09:38:21 -0700 (Thu, 10 Oct 2013)


Log Message
Remove duplicate entry for editing/spelling/spellcheck-paste.html.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157228 => 157229)

--- trunk/LayoutTests/ChangeLog	2013-10-10 16:31:25 UTC (rev 157228)
+++ trunk/LayoutTests/ChangeLog	2013-10-10 16:38:21 UTC (rev 157229)
@@ -1,3 +1,9 @@
+2013-10-10  Gustavo Noronha Silva  
+
+Remove duplicate entry for editing/spelling/spellcheck-paste.html.
+
+* platform/gtk/TestExpectations:
+
 2013-10-10  Chris Fleizach  
 
 AX: Crash at WebCore::accessibleNameForNode when visiting Facebook


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157228 => 157229)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-10 16:31:25 UTC (rev 157228)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-10 16:38:21 UTC (rev 157229)
@@ -760,7 +760,6 @@
 
 webkit.org/b/73003 editing/spelling/spellcheck-async.html [ Failure Slow ]
 webkit.org/b/73003 editing/spelling/spellcheck-async-mutation.html [ Failure Slow ]
-webkit.org/b/73003 editing/spelling/spellcheck-paste.html [ Pass Slow ]
 webkit.org/b/73003 editing/spelling/spellcheck-sequencenum.html [ Failure Slow ]
 webkit.org/b/50740 editing/spelling/spellcheck-queue.html [ Failure Slow ]
 






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


[webkit-changes] [157182] trunk/LayoutTests

2013-10-09 Thread kov
Title: [157182] trunk/LayoutTests








Revision 157182
Author k...@webkit.org
Date 2013-10-09 13:44:02 -0700 (Wed, 09 Oct 2013)


Log Message
Unreviewed gardening. Many inspector protocol tests are timing out on the bots, unreproducible locally.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157181 => 157182)

--- trunk/LayoutTests/ChangeLog	2013-10-09 20:31:57 UTC (rev 157181)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 20:44:02 UTC (rev 157182)
@@ -1,5 +1,11 @@
 2013-10-09  Gustavo Noronha Silva  
 
+Unreviewed gardening. Many inspector protocol tests are timing out on the bots, unreproducible locally.
+
+* platform/gtk/TestExpectations:
+
+2013-10-09  Gustavo Noronha Silva  
+
 Unreviewed gardening. A couple of paste tests began timing out after
 http://trac.webkit.org/changeset/156678.
 


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157181 => 157182)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 20:31:57 UTC (rev 157181)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 20:44:02 UTC (rev 157182)
@@ -811,6 +811,35 @@
 
 webkit.org/b/120682 inspector-protocol/page/archive.html [ Timeout ]
 
+webkit.org/b/122571 http/tests/inspector-protocol/access-inspected-object.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setBreakpoint.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/call-frame-function-name.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setBreakpoint-options-exception.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setPauseOnExceptions-all.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setPauseOnExceptions-none.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/call-frame-this-host.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setBreakpoint-autoContinue.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setPauseOnExceptions-uncaught.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setBreakpoint-actions.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/call-frame-this-nonstrict.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setBreakpoint-column.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setBreakpoint-condition.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/removeBreakpoint.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/setVariableValue.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/debugger/call-frame-this-strict.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/dom/setFileInputFiles.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/dom/request-child-nodes-depth.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/dom/focus.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/input/dispatchMouseEvent.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/input/dispatchKeyEvent.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/runtime/getProperties.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/page/_javascript_DialogEvents.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/page/frameStartedLoading.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/page/frameScheduledNavigation.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/page/setEmulatedMedia.html [ Timeout Pass ]
+webkit.org/b/122571 inspector-protocol/css/getSupportedCSSProperties.html [ Timeout Pass ]
+
+
 #
 # End of Tests timing out
 #






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


[webkit-changes] [157181] trunk/LayoutTests

2013-10-09 Thread kov
Title: [157181] trunk/LayoutTests








Revision 157181
Author k...@webkit.org
Date 2013-10-09 13:31:57 -0700 (Wed, 09 Oct 2013)


Log Message
Unreviewed gardening. A couple of paste tests began timing out after
http://trac.webkit.org/changeset/156678.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157180 => 157181)

--- trunk/LayoutTests/ChangeLog	2013-10-09 20:26:00 UTC (rev 157180)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 20:31:57 UTC (rev 157181)
@@ -1,3 +1,10 @@
+2013-10-09  Gustavo Noronha Silva  
+
+Unreviewed gardening. A couple of paste tests began timing out after
+http://trac.webkit.org/changeset/156678.
+
+* platform/gtk/TestExpectations:
+
 2013-10-09  Sergio Correia  
 
 CoordinatedGraphics: Fix integer rounding when computing pixel alignment


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157180 => 157181)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 20:26:00 UTC (rev 157180)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 20:31:57 UTC (rev 157181)
@@ -979,6 +979,9 @@
 webkit.org/b/40601 fast/events/right-click-focus.html [ Failure ]
 webkit.org/b/40601 editing/selection/5354455-1.html [ Failure ]
 
+webkit.org/b/122121 editing/spelling/spellcheck-paste.html [ Timeout ]
+webkit.org/b/122121 editing/spelling/spelling-changed-text.html [ Timeout ]
+
 # Tests that fail across all platforms.
 # Even though some platforms don't skip these tests, there are platform-specific
 # results generated that make these tests 'pass'.






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


[webkit-changes] [157167] trunk/LayoutTests

2013-10-09 Thread kov
Title: [157167] trunk/LayoutTests








Revision 157167
Author k...@webkit.org
Date 2013-10-09 07:54:46 -0700 (Wed, 09 Oct 2013)


Log Message
Unreviewed gardening. Add timeout as expected result for fast/history/go-back-to-iframe-with-plugin.html,
since it times out sometimes.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157166 => 157167)

--- trunk/LayoutTests/ChangeLog	2013-10-09 14:48:10 UTC (rev 157166)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 14:54:46 UTC (rev 157167)
@@ -1,5 +1,12 @@
 2013-10-09  Gustavo Noronha Silva  
 
+Unreviewed gardening. Add timeout as expected result for fast/history/go-back-to-iframe-with-plugin.html,
+since it times out sometimes.
+
+* platform/gtk/TestExpectations:
+
+2013-10-09  Gustavo Noronha Silva  
+
 Unreviewed gardening. Add timeout as expected result for mathml/very-large-stretchy-operators.html,
 since it times out on the bots.
 


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157166 => 157167)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 14:48:10 UTC (rev 157166)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 14:54:46 UTC (rev 157167)
@@ -868,6 +868,8 @@
 Bug(GTK) fast/dom/Window/window-onFocus.html [ Failure ]
 Bug(GTK) fast/events/frame-tab-focus.html [ Failure ]
 
+Bug(GTK) fast/history/go-back-to-iframe-with-plugin.html [ Timeout Pass ]
+
 # Looks like a bug in the LayoutTestController global history support due to missing API.
 Bug(GTK) fast/history/window-open.html [ Failure ]
 






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


[webkit-changes] [157166] trunk/LayoutTests

2013-10-09 Thread kov
Title: [157166] trunk/LayoutTests








Revision 157166
Author k...@webkit.org
Date 2013-10-09 07:48:10 -0700 (Wed, 09 Oct 2013)


Log Message
Unreviewed gardening. Add timeout as expected result for mathml/very-large-stretchy-operators.html,
since it times out on the bots.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157165 => 157166)

--- trunk/LayoutTests/ChangeLog	2013-10-09 14:16:34 UTC (rev 157165)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 14:48:10 UTC (rev 157166)
@@ -1,3 +1,10 @@
+2013-10-09  Gustavo Noronha Silva  
+
+Unreviewed gardening. Add timeout as expected result for mathml/very-large-stretchy-operators.html,
+since it times out on the bots.
+
+* platform/gtk/TestExpectations:
+
 2013-10-09  Krzysztof Czech  
 
 [EFL] accessibility/table-cells.html is failing


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157165 => 157166)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 14:16:34 UTC (rev 157165)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 14:48:10 UTC (rev 157166)
@@ -1362,6 +1362,9 @@
 
 webkit.org/b/118595 fast/regions/auto-size/autoheight-correct-region-for-lines-2.html [ ImageOnlyFailure ]
 
+# May take too long on the bots.
+Bug(GTK) mathml/very-large-stretchy-operators.html [ Pass Timeout ]
+
 # MathML tests failing after MathML pixel tests were replaced with ref tests
 webkit.org/b/118904 mathml/presentation/bug95404.html [ ImageOnlyFailure ]
 






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


[webkit-changes] [157156] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157156] trunk/LayoutTests








Revision 157156
Author k...@webkit.org
Date 2013-10-08 19:36:15 -0700 (Tue, 08 Oct 2013)


Log Message
Fix expectation for geolocation test that has been timing out.

* platform/gtk-wk2/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk-wk2/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157155 => 157156)

--- trunk/LayoutTests/ChangeLog	2013-10-09 02:07:40 UTC (rev 157155)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 02:36:15 UTC (rev 157156)
@@ -1,5 +1,11 @@
 2013-10-08  Gustavo Noronha Silva  
 
+Fix expectation for geolocation test that has been timing out.
+
+* platform/gtk-wk2/TestExpectations:
+
+2013-10-08  Gustavo Noronha Silva  
+
 Unreviewed gardening. Move http/tests/loading/307-after-303-after-post.html failure
 expectation to the global gtk expectations file, since it's also true for gtk-wk2.
 


Modified: trunk/LayoutTests/platform/gtk-wk2/TestExpectations (157155 => 157156)

--- trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-09 02:07:40 UTC (rev 157155)
+++ trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-09 02:36:15 UTC (rev 157156)
@@ -125,7 +125,7 @@
 
 # Implement testRunner.numberOfPendingGeolocationPermissionRequests()
 # http://webkit.org/b/93977
-webkit.org/b/93977 fast/dom/Geolocation/page-reload-cancel-permission-requests.html [ Failure ]
+webkit.org/b/93977 fast/dom/Geolocation/page-reload-cancel-permission-requests.html [ Timeout ]
 
 # Fails because MutationObservers are not notified at end-of-task.
 webkit.org/b/78290 fast/dom/MutationObserver/end-of-task-delivery.html [ Failure Timeout ]






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


[webkit-changes] [157155] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157155] trunk/LayoutTests








Revision 157155
Author k...@webkit.org
Date 2013-10-08 19:07:40 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed gardening. Move http/tests/loading/307-after-303-after-post.html failure
expectation to the global gtk expectations file, since it's also true for gtk-wk2.

* platform/gtk-wk1/TestExpectations:
* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations
trunk/LayoutTests/platform/gtk-wk1/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157154 => 157155)

--- trunk/LayoutTests/ChangeLog	2013-10-09 01:16:54 UTC (rev 157154)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 02:07:40 UTC (rev 157155)
@@ -1,5 +1,13 @@
 2013-10-08  Gustavo Noronha Silva  
 
+Unreviewed gardening. Move http/tests/loading/307-after-303-after-post.html failure
+expectation to the global gtk expectations file, since it's also true for gtk-wk2.
+
+* platform/gtk-wk1/TestExpectations:
+* platform/gtk/TestExpectations:
+
+2013-10-08  Gustavo Noronha Silva  
+
 Unreviewed gardening. The 64 bits release bot has been made to use 8 bpp depth, so
 fast/dom/Window/window-screen-properties.html won't pass there.
 


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157154 => 157155)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 01:16:54 UTC (rev 157154)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 02:07:40 UTC (rev 157155)
@@ -915,6 +915,9 @@
 # eventSender.keyDown call does not get executed from the TestNetscapePlugin
 webkit.org/b/90383 http/tests/plugins/plugin-document-has-focus.html [ Skip ]
 
+# Needs to make sure the redirect-chain scenario in https://bugs.webkit.org/show_bug.cgi?id=31410 works
+webkit.org/b/35300 http/tests/loading/307-after-303-after-post.html [ Failure ]
+
 # Missing resource load callback ability in DRT
 webkit.org/b/27905 http/tests/loading/redirect-methods.html [ Failure ]
 


Modified: trunk/LayoutTests/platform/gtk-wk1/TestExpectations (157154 => 157155)

--- trunk/LayoutTests/platform/gtk-wk1/TestExpectations	2013-10-09 01:16:54 UTC (rev 157154)
+++ trunk/LayoutTests/platform/gtk-wk1/TestExpectations	2013-10-09 02:07:40 UTC (rev 157155)
@@ -205,9 +205,6 @@
 Bug(GTK) fast/loader/stop-provisional-loads.html [ Failure ]
 Bug(GTK) http/tests/security/feed-urls-from-remote.html [ Timeout ]
 
-# Needs to make sure the redirect-chain scenario in https://bugs.webkit.org/show_bug.cgi?id=31410 works
-webkit.org/b/35300 http/tests/loading/307-after-303-after-post.html [ Failure ]
-
 # Missing DRT API.
 Bug(GTK) http/tests/loading/preload-slow-loading.php [ Failure ]
 






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


[webkit-changes] [157151] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157151] trunk/LayoutTests








Revision 157151
Author k...@webkit.org
Date 2013-10-08 17:38:26 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed gardening. The 64 bits release bot has been made to use 8 bpp depth, so
fast/dom/Window/window-screen-properties.html won't pass there.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157150 => 157151)

--- trunk/LayoutTests/ChangeLog	2013-10-09 00:24:38 UTC (rev 157150)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 00:38:26 UTC (rev 157151)
@@ -1,3 +1,10 @@
+2013-10-08  Gustavo Noronha Silva  
+
+Unreviewed gardening. The 64 bits release bot has been made to use 8 bpp depth, so
+fast/dom/Window/window-screen-properties.html won't pass there.
+
+* platform/gtk/TestExpectations:
+
 2013-10-08  Oliver Hunt  
 
 Convert for-of iteration to in-band signalling so we can trivially avoid unnecessary object allocation


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157150 => 157151)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 00:24:38 UTC (rev 157150)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-09 00:38:26 UTC (rev 157151)
@@ -114,6 +114,9 @@
 fast/images/embed-image.html [ WontFix Pass ]
 fast/images/object-image.html [ WontFix Pass ]
 
+# The 64 bits release bot has been made to use 8 bpp depth, so this won't pass there.
+webkit.org/b/121951 fast/dom/Window/window-screen-properties.html [ Failure Pass ]
+
 # This test requires Mac ObjC bindings, although it currently passes
 Bug(GTK) http/tests/security/dataTransfer-set-data-file-url.html [ WontFix Pass ]
 






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


[webkit-changes] [157149] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157149] trunk/LayoutTests








Revision 157149
Author k...@webkit.org
Date 2013-10-08 17:21:00 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed gardening. Make platform-specific expectation file apply only to gtk-wk1, since
gtk-wk2 gets the output right.

* platform/gtk-wk1/fast/loader/show-only-one-beforeunload-dialog-expected.txt: Renamed from LayoutTests/platform/gtk/fast/loader/show-only-one-beforeunload-dialog-expected.txt.

Modified Paths

trunk/LayoutTests/ChangeLog


Added Paths

trunk/LayoutTests/platform/gtk-wk1/fast/loader/
trunk/LayoutTests/platform/gtk-wk1/fast/loader/show-only-one-beforeunload-dialog-expected.txt


Removed Paths

trunk/LayoutTests/platform/gtk/fast/loader/show-only-one-beforeunload-dialog-expected.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (157148 => 157149)

--- trunk/LayoutTests/ChangeLog	2013-10-09 00:08:35 UTC (rev 157148)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 00:21:00 UTC (rev 157149)
@@ -1,5 +1,12 @@
 2013-10-08  Gustavo Noronha Silva  
 
+Unreviewed gardening. Make platform-specific expectation file apply only to gtk-wk1, since
+gtk-wk2 gets the output right.
+
+* platform/gtk-wk1/fast/loader/show-only-one-beforeunload-dialog-expected.txt: Renamed from LayoutTests/platform/gtk/fast/loader/show-only-one-beforeunload-dialog-expected.txt.
+
+2013-10-08  Gustavo Noronha Silva  
+
 Unreviewed gardening. Update gtk-wk2-specific expectations for a couple of
 fast/dom/Window tests:
 


Deleted: trunk/LayoutTests/platform/gtk/fast/loader/show-only-one-beforeunload-dialog-expected.txt (157148 => 157149)

--- trunk/LayoutTests/platform/gtk/fast/loader/show-only-one-beforeunload-dialog-expected.txt	2013-10-09 00:08:35 UTC (rev 157148)
+++ trunk/LayoutTests/platform/gtk/fast/loader/show-only-one-beforeunload-dialog-expected.txt	2013-10-09 00:21:00 UTC (rev 157149)
@@ -1,4 +0,0 @@
-CONFIRM: This is beforeunload from the top level frame.
-CONSOLE MESSAGE: Blocked attempt to show multiple beforeunload confirmation dialogs for the same navigation.
-CONSOLE MESSAGE: Blocked attempt to show multiple beforeunload confirmation dialogs for the same navigation.
-


Copied: trunk/LayoutTests/platform/gtk-wk1/fast/loader/show-only-one-beforeunload-dialog-expected.txt (from rev 157148, trunk/LayoutTests/platform/gtk/fast/loader/show-only-one-beforeunload-dialog-expected.txt) (0 => 157149)

--- trunk/LayoutTests/platform/gtk-wk1/fast/loader/show-only-one-beforeunload-dialog-expected.txt	(rev 0)
+++ trunk/LayoutTests/platform/gtk-wk1/fast/loader/show-only-one-beforeunload-dialog-expected.txt	2013-10-09 00:21:00 UTC (rev 157149)
@@ -0,0 +1,4 @@
+CONFIRM: This is beforeunload from the top level frame.
+CONSOLE MESSAGE: Blocked attempt to show multiple beforeunload confirmation dialogs for the same navigation.
+CONSOLE MESSAGE: Blocked attempt to show multiple beforeunload confirmation dialogs for the same navigation.
+






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


[webkit-changes] [157148] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157148] trunk/LayoutTests








Revision 157148
Author k...@webkit.org
Date 2013-10-08 17:08:35 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed gardening. Update gtk-wk2-specific expectations for a couple of
fast/dom/Window tests:

  - fast/dom/Window/window-postmessage-clone.html (times out)
  - fast/dom/Window/open-window-min-size.html (fails)

* platform/gtk-wk2/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk-wk2/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157147 => 157148)

--- trunk/LayoutTests/ChangeLog	2013-10-09 00:05:49 UTC (rev 157147)
+++ trunk/LayoutTests/ChangeLog	2013-10-09 00:08:35 UTC (rev 157148)
@@ -1,5 +1,15 @@
 2013-10-08  Gustavo Noronha Silva  
 
+Unreviewed gardening. Update gtk-wk2-specific expectations for a couple of
+fast/dom/Window tests:
+
+  - fast/dom/Window/window-postmessage-clone.html (times out)
+  - fast/dom/Window/open-window-min-size.html (fails)
+
+* platform/gtk-wk2/TestExpectations:
+
+2013-10-08  Gustavo Noronha Silva  
+
 Upgrade accessibility/title-ui-element-correctness.html from crash (wk2-specific)
 to fail (gtk-wide) expectation.
 


Modified: trunk/LayoutTests/platform/gtk-wk2/TestExpectations (157147 => 157148)

--- trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-09 00:05:49 UTC (rev 157147)
+++ trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-09 00:08:35 UTC (rev 157148)
@@ -297,6 +297,8 @@
 # Tests timing out
 #
 
+Bug(GTK) fast/dom/Window/window-postmessage-clone.html [ Timeout ]
+
 Bug(GTK) plugins/evaluate-js-after-removing-plugin-element.html [ Timeout ]
 Bug(GTK) plugins/reloadplugins-and-pages.html [ Timeout ]
 
@@ -381,6 +383,9 @@
 webkit.org/b/97655 fast/regions/style-scoped-in-flow-override-region-styling.html [ ImageOnlyFailure ]
 webkit.org/b/97655 fast/regions/style-scoped-in-flow.html [ ImageOnlyFailure ]
 
+# Apparently our WebkitTestRunner is disregarding window features? We open the window sized 800x600.
+webkit.org/b/122535 fast/dom/Window/open-window-min-size.html [ Failure ]
+
 # Unexplained failures
 Bug(GTK) editing/deleting/delete-ligature-003.html [ Failure ]
 Bug(GTK) editing/deleting/paragraph-in-preserveNewline.html [ Failure ]






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


[webkit-changes] [157145] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157145] trunk/LayoutTests








Revision 157145
Author k...@webkit.org
Date 2013-10-08 16:25:49 -0700 (Tue, 08 Oct 2013)


Log Message
Upgrade accessibility/title-ui-element-correctness.html from crash (wk2-specific)
to fail (gtk-wide) expectation.

* platform/gtk-wk2/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk-wk2/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157144 => 157145)

--- trunk/LayoutTests/ChangeLog	2013-10-08 23:20:42 UTC (rev 157144)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 23:25:49 UTC (rev 157145)
@@ -1,3 +1,10 @@
+2013-10-08  Gustavo Noronha Silva  
+
+Upgrade accessibility/title-ui-element-correctness.html from crash (wk2-specific)
+to fail (gtk-wide) expectation.
+
+* platform/gtk-wk2/TestExpectations:
+
 2013-10-08  Mihnea Ovidenie  
 
 [CSSRegions] Move autoheight* tests into fast/regions/auto-size


Modified: trunk/LayoutTests/platform/gtk-wk2/TestExpectations (157144 => 157145)

--- trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-08 23:20:42 UTC (rev 157144)
+++ trunk/LayoutTests/platform/gtk-wk2/TestExpectations	2013-10-08 23:25:49 UTC (rev 157145)
@@ -196,8 +196,6 @@
 
 Bug(GTK) plugins/document-open.html [ Crash ]
 
-webkit.org/b/116974 accessibility/title-ui-element-correctness.html [ Crash ]
-
 # Fix for https://bugs.webkit.org/show_bug.cgi?id=97192 introduces this regression
 webkit.org/b/102776 media/track/track-cue-container-rendering-position.html [ Crash ]
 






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


[webkit-changes] [157134] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157134] trunk/LayoutTests








Revision 157134
Author k...@webkit.org
Date 2013-10-08 13:38:33 -0700 (Tue, 08 Oct 2013)


Log Message
Skip a new WebGL test along with the others.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157133 => 157134)

--- trunk/LayoutTests/ChangeLog	2013-10-08 20:34:22 UTC (rev 157133)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 20:38:33 UTC (rev 157134)
@@ -1,3 +1,9 @@
+2013-10-08  Gustavo Noronha Silva  
+
+Skip a new WebGL test along with the others.
+
+* platform/gtk/TestExpectations:
+
 2013-10-07  Dean Jackson  
 
 Video -> pixel buffer output should not manage color spaces


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157133 => 157134)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 20:34:22 UTC (rev 157133)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 20:38:33 UTC (rev 157134)
@@ -274,6 +274,7 @@
 webkit.org/b/71849 compositing [ Skip ]
 webkit.org/b/71849 css3/compositing [ Skip ]
 webkit.org/b/71849 fast/canvas/webgl [ Skip ]
+webkit.org/b/71849 fast/images/webgl-teximage2d.html [ Skip ]
 webkit.org/b/71849 fast/transforms/selection-bounds-in-transformed-view.html [ Skip ]
 webkit.org/b/71849 fast/media/mq-transform-02.html [ Skip ]
 webkit.org/b/71849 fast/media/mq-transform-03.html [ Skip ]






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


[webkit-changes] [157130] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157130] trunk/LayoutTests








Revision 157130
Author k...@webkit.org
Date 2013-10-08 13:25:17 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed gardening.

* platform/gtk/TestExpectations: fast/backgrounds/background-opaque-images-over-color.html
failing.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157129 => 157130)

--- trunk/LayoutTests/ChangeLog	2013-10-08 20:03:53 UTC (rev 157129)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 20:25:17 UTC (rev 157130)
@@ -1,3 +1,10 @@
+2013-10-08  Gustavo Noronha Silva  
+
+Unreviewed gardening.
+
+* platform/gtk/TestExpectations: fast/backgrounds/background-opaque-images-over-color.html
+failing.
+
 2013-10-08  Mihnea Ovidenie  
 
 [CSSRegions] Regions with overflow: hidden should paint over positioned sibling


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157129 => 157130)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 20:03:53 UTC (rev 157129)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 20:25:17 UTC (rev 157130)
@@ -58,6 +58,9 @@
 # This test verifies that a mismatch reftest will fail as intended if both results are same.
 fast/harness/sample-fail-mismatch-reftest.html [ WontFix ImageOnlyFailure ]
 
+# Color bleeds through; might work with newer cairo (works when running with Fedora 20's system cairo).
+fast/backgrounds/background-opaque-images-over-color.html [ ImageOnlyFailure ]
+
 # Ignored because we do not have OBJC bindings (via Chromium).
 editing/pasteboard/paste-RTFD.html [ WontFix Missing ]
 editing/pasteboard/paste-TIFF.html [ WontFix Missing ]






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


[webkit-changes] [157128] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157128] trunk/LayoutTests








Revision 157128
Author k...@webkit.org
Date 2013-10-08 12:58:08 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed gardening, these tests had a couple pixels shift at some point,
needing a new baseline.

* platform/gtk/fast/hidpi/clip-text-in-hidpi-expected.txt:
* platform/gtk/fast/hidpi/image-set-background-dynamic-expected.txt:
* platform/gtk/fast/hidpi/image-set-border-image-dynamic-expected.txt:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/fast/hidpi/clip-text-in-hidpi-expected.txt
trunk/LayoutTests/platform/gtk/fast/hidpi/image-set-background-dynamic-expected.txt
trunk/LayoutTests/platform/gtk/fast/hidpi/image-set-border-image-dynamic-expected.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (157127 => 157128)

--- trunk/LayoutTests/ChangeLog	2013-10-08 19:44:31 UTC (rev 157127)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 19:58:08 UTC (rev 157128)
@@ -1,3 +1,12 @@
+2013-10-08  Gustavo Noronha Silva  
+
+Unreviewed gardening, these tests had a couple pixels shift at some point,
+needing a new baseline.
+
+* platform/gtk/fast/hidpi/clip-text-in-hidpi-expected.txt:
+* platform/gtk/fast/hidpi/image-set-background-dynamic-expected.txt:
+* platform/gtk/fast/hidpi/image-set-border-image-dynamic-expected.txt:
+
 2013-10-08  Grzegorz Czajkowski  
 
 [Mac] Unskip editing/spelling/spelling-changed-text.html


Modified: trunk/LayoutTests/platform/gtk/fast/hidpi/clip-text-in-hidpi-expected.txt (157127 => 157128)

--- trunk/LayoutTests/platform/gtk/fast/hidpi/clip-text-in-hidpi-expected.txt	2013-10-08 19:44:31 UTC (rev 157127)
+++ trunk/LayoutTests/platform/gtk/fast/hidpi/clip-text-in-hidpi-expected.txt	2013-10-08 19:58:08 UTC (rev 157128)
@@ -3,11 +3,11 @@
 layer at (0,0) size 800x600
   RenderBlock {HTML} at (0,0) size 800x600
 RenderBody {BODY} at (8,8) size 784x584
-  RenderInline {SPAN} at (0,0) size 352x19 [bgcolor=#FF]
-RenderText {#text} at (0,0) size 352x19
+  RenderInline {SPAN} at (0,0) size 352x17 [bgcolor=#FF]
+RenderText {#text} at (0,0) size 352x17
   text run at (0,0) width 352: "This text should be nice and sharp. devicePixelRatio is: "
   RenderText {#text} at (0,0) size 0x0
-  RenderInline {SPAN} at (0,0) size 8x19
-RenderText {#text} at (352,0) size 8x19
+  RenderInline {SPAN} at (0,0) size 8x17
+RenderText {#text} at (352,0) size 8x17
   text run at (352,0) width 8: "2"
   RenderText {#text} at (0,0) size 0x0


Modified: trunk/LayoutTests/platform/gtk/fast/hidpi/image-set-background-dynamic-expected.txt (157127 => 157128)

--- trunk/LayoutTests/platform/gtk/fast/hidpi/image-set-background-dynamic-expected.txt	2013-10-08 19:44:31 UTC (rev 157127)
+++ trunk/LayoutTests/platform/gtk/fast/hidpi/image-set-background-dynamic-expected.txt	2013-10-08 19:58:08 UTC (rev 157128)
@@ -3,11 +3,11 @@
 layer at (0,0) size 800x600
   RenderBlock {HTML} at (0,0) size 800x600
 RenderBody {BODY} at (8,8) size 784x584
-  RenderBlock {DIV} at (0,0) size 784x54
-RenderText {#text} at (0,0) size 773x55
+  RenderBlock {DIV} at (0,0) size 784x51
+RenderText {#text} at (0,0) size 773x51
   text run at (0,0) width 761: "This test passes if the div below is a blue 100px square when the deviceScaleFactor is 1, and if it is a 100px green square"
-  text run at (0,18) width 773: "when the deviceScaleFactor is 2. When run in the test harness, this test is distinct from image-set-as-background, because it"
-  text run at (0,36) width 492: "ensures that the green image loads dynamically when the scale factor changes."
-  RenderBlock {DIV} at (0,54) size 100x100
-RenderText {#text} at (0,0) size 8x19
+  text run at (0,17) width 773: "when the deviceScaleFactor is 2. When run in the test harness, this test is distinct from image-set-as-background, because it"
+  text run at (0,34) width 492: "ensures that the green image loads dynamically when the scale factor changes."
+  RenderBlock {DIV} at (0,51) size 100x100
+RenderText {#text} at (0,0) size 8x17
   text run at (0,0) width 8: "2"


Modified: trunk/LayoutTests/platform/gtk/fast/hidpi/image-set-border-image-dynamic-expected.txt (157127 => 157128)

--- trunk/LayoutTests/platform/gtk/fast/hidpi/image-set-border-image-dynamic-expected.txt	2013-10-08 19:44:31 UTC (rev 157127)
+++ trunk/LayoutTests/platform/gtk/fast/hidpi/image-set-border-image-dynamic-expected.txt	2013-10-08 19:58:08 UTC (rev 157128)
@@ -3,11 +3,11 @@
 layer at (0,0) size 800x600
   RenderBlock {HTML} at (0,0) size 800x600
 RenderBody {BODY} at (8,8) size 784x584
-  RenderBlock {DIV} at (0,0) size 784x54
-RenderText {#text} at (0,0) size 773x55
+  RenderBlock {DIV} at (0,0) size 784x51
+RenderText {#text} at (0,0) size 773x51
   text run at (0,0) width 761: "This test passes if t

[webkit-changes] [157125] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157125] trunk/LayoutTests








Revision 157125
Author k...@webkit.org
Date 2013-10-08 12:13:58 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed gardening. A couple of media-query tests rely on 3d transforms,
so skip them along with the 3d transforms tests.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157124 => 157125)

--- trunk/LayoutTests/ChangeLog	2013-10-08 18:25:16 UTC (rev 157124)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 19:13:58 UTC (rev 157125)
@@ -1,3 +1,10 @@
+2013-10-08  Gustavo Noronha Silva  
+
+Unreviewed gardening. A couple of media-query tests rely on 3d transforms,
+so skip them along with the 3d transforms tests.
+
+* platform/gtk/TestExpectations:
+
 2013-10-08  Mihnea Ovidenie  
 
 [CSSRegions] Computed z-Index should return 0 instead of auto for a region


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157124 => 157125)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 18:25:16 UTC (rev 157124)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 19:13:58 UTC (rev 157125)
@@ -272,6 +272,8 @@
 webkit.org/b/71849 css3/compositing [ Skip ]
 webkit.org/b/71849 fast/canvas/webgl [ Skip ]
 webkit.org/b/71849 fast/transforms/selection-bounds-in-transformed-view.html [ Skip ]
+webkit.org/b/71849 fast/media/mq-transform-02.html [ Skip ]
+webkit.org/b/71849 fast/media/mq-transform-03.html [ Skip ]
 webkit.org/b/71849 http/tests/canvas/webgl [ Skip ]
 webkit.org/b/71849 http/tests/security/webgl-remote-read-remote-image-allowed.html [ Skip ]
 webkit.org/b/71849 http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials.html [ Skip ]






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


[webkit-changes] [157118] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157118] trunk/LayoutTests








Revision 157118
Author k...@webkit.org
Date 2013-10-08 10:16:17 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed gardening. Adding ImageOnlyFailure expectations to:

- fast/regions/selection/selecting-text-ignoring-region-horiz-bt.html
- fast/regions/selection/selecting-text-ignoring-region-vert-lr.html
- fast/regions/selection/selecting-text-in-2-regions-horiz-bt.html
- fast/regions/selection/selecting-text-in-2-regions-vert-lr.html

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157117 => 157118)

--- trunk/LayoutTests/ChangeLog	2013-10-08 17:12:06 UTC (rev 157117)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 17:16:17 UTC (rev 157118)
@@ -1,3 +1,14 @@
+2013-10-08  Gustavo Noronha Silva  
+
+Unreviewed gardening. Adding ImageOnlyFailure expectations to:
+
+- fast/regions/selection/selecting-text-ignoring-region-horiz-bt.html
+- fast/regions/selection/selecting-text-ignoring-region-vert-lr.html
+- fast/regions/selection/selecting-text-in-2-regions-horiz-bt.html
+- fast/regions/selection/selecting-text-in-2-regions-vert-lr.html
+
+* platform/gtk/TestExpectations:
+
 2013-10-08  Alexey Proskuryakov  
 
 Layout Test inspector/styles/add-new-rule-with-style-after-body.html is flaky


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157117 => 157118)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 17:12:06 UTC (rev 157117)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 17:16:17 UTC (rev 157118)
@@ -149,6 +149,12 @@
 # Pre-HMTL5 parser quirks only apply to the mac port for now.
 fast/parser/pre-html5-parser-quirks.html [ WontFix Failure ]
 
+# Text rendering overflowing region it should not
+webkit.org/b/122511 fast/regions/selection/selecting-text-ignoring-region-horiz-bt.html [ ImageOnlyFailure ]
+webkit.org/b/122511 fast/regions/selection/selecting-text-ignoring-region-vert-lr.html [ ImageOnlyFailure ]
+webkit.org/b/122511 fast/regions/selection/selecting-text-in-2-regions-horiz-bt.html [ ImageOnlyFailure ]
+webkit.org/b/122511 fast/regions/selection/selecting-text-in-2-regions-vert-lr.html [ ImageOnlyFailure ]
+
 # Features that we want eventually:
 # DeviceMotion and DeviceOrientation are not enabled by default.
 webkit.org/b/98927 fast/dom/Window/window-properties-device-orientation.html [ Skip ]






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


[webkit-changes] [157113] trunk/LayoutTests

2013-10-08 Thread kov
Title: [157113] trunk/LayoutTests








Revision 157113
Author k...@webkit.org
Date 2013-10-08 09:43:47 -0700 (Tue, 08 Oct 2013)


Log Message
Unreviewed, rolling out r157080.
http://trac.webkit.org/changeset/157080

Not a proper baseline

* platform/gtk/fast/regions/selection/selecting-text-ignoring-region-horiz-bt-expected.png: Removed.
* platform/gtk/fast/regions/selection/selecting-text-ignoring-region-vert-lr-expected.png: Removed.
* platform/gtk/fast/regions/selection/selecting-text-in-2-regions-horiz-bt-expected.png: Removed.
* platform/gtk/fast/regions/selection/selecting-text-in-2-regions-vert-lr-expected.png: Removed.

Modified Paths

trunk/LayoutTests/ChangeLog


Removed Paths

trunk/LayoutTests/platform/gtk/fast/regions/selection/




Diff

Modified: trunk/LayoutTests/ChangeLog (157112 => 157113)

--- trunk/LayoutTests/ChangeLog	2013-10-08 16:42:03 UTC (rev 157112)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 16:43:47 UTC (rev 157113)
@@ -1,3 +1,15 @@
+2013-10-08  Gustavo Noronha Silva  
+
+Unreviewed, rolling out r157080.
+http://trac.webkit.org/changeset/157080
+
+Not a proper baseline
+
+* platform/gtk/fast/regions/selection/selecting-text-ignoring-region-horiz-bt-expected.png: Removed.
+* platform/gtk/fast/regions/selection/selecting-text-ignoring-region-vert-lr-expected.png: Removed.
+* platform/gtk/fast/regions/selection/selecting-text-in-2-regions-horiz-bt-expected.png: Removed.
+* platform/gtk/fast/regions/selection/selecting-text-in-2-regions-vert-lr-expected.png: Removed.
+
 2013-10-08  Alexey Proskuryakov  
 
 Flaky Test: media/video-layer-crash.html






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


[webkit-changes] [157080] trunk/LayoutTests

2013-10-07 Thread kov
Title: [157080] trunk/LayoutTests








Revision 157080
Author k...@webkit.org
Date 2013-10-07 20:26:44 -0700 (Mon, 07 Oct 2013)


Log Message
Gardening: add baselines for new tests.

* platform/gtk/fast/regions/selection/selecting-text-ignoring-region-horiz-bt-expected.png: Added.
* platform/gtk/fast/regions/selection/selecting-text-ignoring-region-vert-lr-expected.png: Added.
* platform/gtk/fast/regions/selection/selecting-text-in-2-regions-horiz-bt-expected.png: Added.
* platform/gtk/fast/regions/selection/selecting-text-in-2-regions-vert-lr-expected.png: Added.

Modified Paths

trunk/LayoutTests/ChangeLog


Added Paths

trunk/LayoutTests/platform/gtk/fast/regions/selection/
trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-ignoring-region-horiz-bt-expected.png
trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-ignoring-region-vert-lr-expected.png
trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-in-2-regions-horiz-bt-expected.png
trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-in-2-regions-vert-lr-expected.png




Diff

Modified: trunk/LayoutTests/ChangeLog (157079 => 157080)

--- trunk/LayoutTests/ChangeLog	2013-10-08 02:49:34 UTC (rev 157079)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 03:26:44 UTC (rev 157080)
@@ -1,5 +1,14 @@
 2013-10-07  Gustavo Noronha Silva  
 
+Gardening: add baselines for new tests.
+
+* platform/gtk/fast/regions/selection/selecting-text-ignoring-region-horiz-bt-expected.png: Added.
+* platform/gtk/fast/regions/selection/selecting-text-ignoring-region-vert-lr-expected.png: Added.
+* platform/gtk/fast/regions/selection/selecting-text-in-2-regions-horiz-bt-expected.png: Added.
+* platform/gtk/fast/regions/selection/selecting-text-in-2-regions-vert-lr-expected.png: Added.
+
+2013-10-07  Gustavo Noronha Silva  
+
 Gardening: skip audio/video track tests, since those are not yet supported by our
 media player.
 


Added: trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-ignoring-region-horiz-bt-expected.png

(Binary files differ)

Property changes on: trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-ignoring-region-horiz-bt-expected.png
___

Added: svn:mime-type

Added: trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-ignoring-region-vert-lr-expected.png

(Binary files differ)

Property changes on: trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-ignoring-region-vert-lr-expected.png
___

Added: svn:mime-type

Added: trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-in-2-regions-horiz-bt-expected.png

(Binary files differ)

Property changes on: trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-in-2-regions-horiz-bt-expected.png
___

Added: svn:mime-type

Added: trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-in-2-regions-vert-lr-expected.png

(Binary files differ)

Property changes on: trunk/LayoutTests/platform/gtk/fast/regions/selection/selecting-text-in-2-regions-vert-lr-expected.png
___

Added: svn:mime-type




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


[webkit-changes] [157079] trunk/LayoutTests

2013-10-07 Thread kov
Title: [157079] trunk/LayoutTests








Revision 157079
Author k...@webkit.org
Date 2013-10-07 19:49:34 -0700 (Mon, 07 Oct 2013)


Log Message
Gardening: skip audio/video track tests, since those are not yet supported by our
media player.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157078 => 157079)

--- trunk/LayoutTests/ChangeLog	2013-10-08 02:40:20 UTC (rev 157078)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 02:49:34 UTC (rev 157079)
@@ -1,5 +1,12 @@
 2013-10-07  Gustavo Noronha Silva  
 
+Gardening: skip audio/video track tests, since those are not yet supported by our
+media player.
+
+* platform/gtk/TestExpectations:
+
+2013-10-07  Gustavo Noronha Silva  
+
 Unreviewed. Marking svg/animations/svglengthlist-animation-3.html as flaky.
 
 * platform/gtk/TestExpectations:


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157078 => 157079)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 02:40:20 UTC (rev 157078)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 02:49:34 UTC (rev 157079)
@@ -233,6 +233,10 @@
 # GTK doesn't support smart replace.
 webkit.org/b/61661 editing/pasteboard/drag-drop-list.html [ Failure ]
 
+# GStreamer support for audio and video tracks does not exist yet
+webkit.org/b/117039 media/track/audio-track.html [ Skip ]
+webkit.org/b/117039 media/track/video-track.html [ Skip ]
+
 # Tests for MediaSource API. Feature is not yet functional.
 webkit.org/b/99065 http/tests/media/media-source [ Skip ]
 






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


[webkit-changes] [157078] trunk/LayoutTests

2013-10-07 Thread kov
Title: [157078] trunk/LayoutTests








Revision 157078
Author k...@webkit.org
Date 2013-10-07 19:40:20 -0700 (Mon, 07 Oct 2013)


Log Message
Unreviewed. Marking svg/animations/svglengthlist-animation-3.html as flaky.

* platform/gtk/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (157077 => 157078)

--- trunk/LayoutTests/ChangeLog	2013-10-08 01:59:28 UTC (rev 157077)
+++ trunk/LayoutTests/ChangeLog	2013-10-08 02:40:20 UTC (rev 157078)
@@ -1,3 +1,9 @@
+2013-10-07  Gustavo Noronha Silva  
+
+Unreviewed. Marking svg/animations/svglengthlist-animation-3.html as flaky.
+
+* platform/gtk/TestExpectations:
+
 2013-10-04  Frédéric Wang  
 
 [MathML] Remove RenderTree modification during layout and refactor the StretchyOp code


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (157077 => 157078)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 01:59:28 UTC (rev 157077)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-10-08 02:40:20 UTC (rev 157078)
@@ -498,6 +498,7 @@
 
 webkit.org/b/55126 media/video-aspect-ratio.html [ Failure Pass ]
 
+webkit.org/b/122481 svg/animations/svglengthlist-animation-3.html [ Failure Pass ]
 webkit.org/b/56561 svg/custom/clip-path-referencing-use2.svg [ Failure Pass ]
 webkit.org/b/62204 svg/custom/circular-marker-reference-4.svg [ Failure Pass ]
 






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


[webkit-changes] [157073] trunk/Tools

2013-10-07 Thread kov
Title: [157073] trunk/Tools








Revision 157073
Author k...@webkit.org
Date 2013-10-07 18:24:54 -0700 (Mon, 07 Oct 2013)


Log Message
[buildbot] parse tests that are reported as crashed correctly for GTK+
https://bugs.webkit.org/show_bug.cgi?id=122476

Reviewed by Martin Robinson.

* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(RunGtkAPITests.commandComplete): parse the crashed tests output so that is reported
as a failure of the API tests.

Modified Paths

trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg
trunk/Tools/ChangeLog




Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (157072 => 157073)

--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2013-10-08 01:21:27 UTC (rev 157072)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2013-10-08 01:24:54 UTC (rev 157073)
@@ -560,6 +560,7 @@
 logText = cmd.logs['stdio'].getText()
 
 self.incorrectTests = 0
+self.crashedTests = 0
 self.timedOutTests = 0
 self.skippedTests = 0
 self.statusLine = []
@@ -568,6 +569,10 @@
 if (foundItems):
 self.incorrectTests = int(foundItems[0])
 
+foundItems = re.findall("Tests that crashed \((\d+)\):", logText)
+if (foundItems):
+self.crashedTests = int(foundItems[0])
+
 foundItems = re.findall("Tests that timed out \((\d+)\):", logText)
 if (foundItems):
 self.timedOutTests = int(foundItems[0])
@@ -576,12 +581,12 @@
 if (foundItems):
 self.skippedTests = int(foundItems[0])
 
-self.totalFailedTests = self.incorrectTests + self.timedOutTests
+self.totalFailedTests = self.incorrectTests + self.crashedTests + self.timedOutTests
 
 if self.totalFailedTests > 0:
 self.statusLine = [
-"%d API tests failed, %d timed out, %d skipped" %
-(self.incorrectTests, self.timedOutTests, self.skippedTests)
+"%d API tests failed, %d crashed, %d timed out, %d skipped" %
+(self.incorrectTests, self.crashedTests, self.timedOutTests, self.skippedTests)
 ]
 
 def evaluateCommand(self, cmd):


Modified: trunk/Tools/ChangeLog (157072 => 157073)

--- trunk/Tools/ChangeLog	2013-10-08 01:21:27 UTC (rev 157072)
+++ trunk/Tools/ChangeLog	2013-10-08 01:24:54 UTC (rev 157073)
@@ -1,5 +1,16 @@
 2013-10-07  Gustavo Noronha Silva  
 
+[buildbot] parse tests that are reported as crashed correctly for GTK+
+https://bugs.webkit.org/show_bug.cgi?id=122476
+
+Reviewed by Martin Robinson.
+
+* BuildSlaveSupport/build.webkit.org-config/master.cfg:
+(RunGtkAPITests.commandComplete): parse the crashed tests output so that is reported
+as a failure of the API tests.
+
+2013-10-07  Gustavo Noronha Silva  
+
 Unreviewed. Skipping API test that is causing the next one to crash,
 see https://bugs.webkit.org/show_bug.cgi?id=121970.
 






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


[webkit-changes] [157072] trunk/Tools

2013-10-07 Thread kov
Title: [157072] trunk/Tools








Revision 157072
Author k...@webkit.org
Date 2013-10-07 18:21:27 -0700 (Mon, 07 Oct 2013)


Log Message
Unreviewed. Skipping API test that is causing the next one to crash,
see https://bugs.webkit.org/show_bug.cgi?id=121970.

* Scripts/run-gtk-tests:
(TestRunner):

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/run-gtk-tests




Diff

Modified: trunk/Tools/ChangeLog (157071 => 157072)

--- trunk/Tools/ChangeLog	2013-10-08 01:04:00 UTC (rev 157071)
+++ trunk/Tools/ChangeLog	2013-10-08 01:21:27 UTC (rev 157072)
@@ -1,3 +1,11 @@
+2013-10-07  Gustavo Noronha Silva  
+
+Unreviewed. Skipping API test that is causing the next one to crash,
+see https://bugs.webkit.org/show_bug.cgi?id=121970.
+
+* Scripts/run-gtk-tests:
+(TestRunner):
+
 2013-10-07  Gustavo Noronha Silva  
 
 [GTK] run-gtk-tests does not distinguish between failure and crashes


Modified: trunk/Tools/Scripts/run-gtk-tests (157071 => 157072)

--- trunk/Tools/Scripts/run-gtk-tests	2013-10-08 01:04:00 UTC (rev 157071)
+++ trunk/Tools/Scripts/run-gtk-tests	2013-10-08 01:21:27 UTC (rev 157072)
@@ -83,6 +83,7 @@
 SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.InjectedBundleFrameHitTest", "Test times out", 120303),
 SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.ResizeReversePaginatedWebView", "Test fails", 120305),
 SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.ScrollPinningBehaviors", "Test fails", 120306),
+SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.TerminateTwice", "Test causes crash on the next test", 121970),
 ]
 
 def __init__(self, options, tests=[]):






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


[webkit-changes] [157069] trunk/Tools

2013-10-07 Thread kov
Title: [157069] trunk/Tools








Revision 157069
Author k...@webkit.org
Date 2013-10-07 16:56:07 -0700 (Mon, 07 Oct 2013)


Log Message
[GTK] run-gtk-tests does not distinguish between failure and crashes
https://bugs.webkit.org/show_bug.cgi?id=122135

Patch by Gustavo Noronha Silva  on 2013-10-07
Reviewed by Martin Robinson.

The GTK+ API test runner does not distinguish between failures and crashes. This change
makes it do that, so it's easier for us to spot the more important/higher priority crash
case.

* Scripts/run-gtk-tests:
(TestRunner._run_test_command): return the exit code instead of a boolean true/false,
so we have more information on how the process ended.
(TestRunner._run_test): check the exit code to distinguish between crashes and failures.
(TestRunner.run_tests): report crashes.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/run-gtk-tests




Diff

Modified: trunk/Tools/ChangeLog (157068 => 157069)

--- trunk/Tools/ChangeLog	2013-10-07 23:48:19 UTC (rev 157068)
+++ trunk/Tools/ChangeLog	2013-10-07 23:56:07 UTC (rev 157069)
@@ -1,3 +1,20 @@
+2013-10-07  Gustavo Noronha Silva  
+
+[GTK] run-gtk-tests does not distinguish between failure and crashes
+https://bugs.webkit.org/show_bug.cgi?id=122135
+
+Reviewed by Martin Robinson.
+
+The GTK+ API test runner does not distinguish between failures and crashes. This change
+makes it do that, so it's easier for us to spot the more important/higher priority crash
+case.
+
+* Scripts/run-gtk-tests:
+(TestRunner._run_test_command): return the exit code instead of a boolean true/false,
+so we have more information on how the process ended.
+(TestRunner._run_test): check the exit code to distinguish between crashes and failures.
+(TestRunner.run_tests): report crashes.
+
 2013-10-07  Gustavo Noronha Silva  
 
 [GTK] Missing packages for APT on install-dependencies


Modified: trunk/Tools/Scripts/run-gtk-tests (157068 => 157069)

--- trunk/Tools/Scripts/run-gtk-tests	2013-10-07 23:48:19 UTC (rev 157068)
+++ trunk/Tools/Scripts/run-gtk-tests	2013-10-07 23:56:07 UTC (rev 157069)
@@ -22,7 +22,7 @@
 import sys
 import optparse
 import re
-from signal import alarm, signal, SIGALRM, SIGKILL
+from signal import alarm, signal, SIGALRM, SIGKILL, SIGSEGV
 from gi.repository import Gio, GLib
 
 top_level_directory = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))
@@ -309,7 +309,7 @@
 # process.  This child is dead, we can't get the status.
 status = 0
 
-return not return_code_from_exit_status(status)
+return return_code_from_exit_status(status)
 
 def _run_test_glib(self, test_program):
 tester_command = ['gtester']
@@ -336,7 +336,7 @@
 if "TestWebKitAPI" in test_program:
 return self._run_test_google(test_program)
 
-return False
+return 1
 
 def run_tests(self):
 if not self._tests:
@@ -351,19 +351,24 @@
 # some tests might be skipped while setting up the test environment.
 self._tests = [test for test in self._tests if self._should_run_test_program(test)]
 
+crashed_tests = []
 failed_tests = []
 timed_out_tests = []
 try:
 for test in self._tests:
-success = True
+exit_status_code = 0
 try:
-success = self._run_test(test)
+exit_status_code = self._run_test(test)
 except TestTimeout:
 sys.stdout.write("TEST: %s: TIMEOUT\n" % test)
 sys.stdout.flush()
 timed_out_tests.append(test)
 
-if not success:
+if exit_status_code == -SIGSEGV:
+sys.stdout.write("TEST: %s: CRASHED\n" % test)
+sys.stdout.flush()
+crashed_tests.append(test)
+elif exit_status_code != 0:
 failed_tests.append(test)
 finally:
 self._tear_down_testing_environment()
@@ -373,6 +378,11 @@
 sys.stdout.write("Tests failed (%d): %s\n" % (len(names), ", ".join(names)))
 sys.stdout.flush()
 
+if crashed_tests:
+names = [test.replace(self._programs_path, '', 1) for test in crashed_tests]
+sys.stdout.write("Tests that crashed (%d): %s\n" % (len(names), ", ".join(names)))
+sys.stdout.flush()
+
 if timed_out_tests:
 names = [test.replace(self._programs_path, '', 1) for test in timed_out_tests]
 sys.stdout.write("Tests that timed out (%d): %s\n" % (len(names), ", ".join(names)))






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


[webkit-changes] [157064] trunk/Source/WebKit2

2013-10-07 Thread kov
Title: [157064] trunk/Source/WebKit2








Revision 157064
Author k...@webkit.org
Date 2013-10-07 16:01:31 -0700 (Mon, 07 Oct 2013)


Log Message
Reduce duplicated code in WebPageProxy
https://bugs.webkit.org/show_bug.cgi?id=122230

Patch by Gustavo Noronha Silva  on 2013-10-07
Reviewed by Darin Adler.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::close): move duplicate code to resetState and call it.
(WebKit::WebPageProxy::resetState): new private method for code that is shared between
close and resetStateAfterProcessExited.
(WebKit::WebPageProxy::resetStateAfterProcessExited): move duplicate code to resetState
and call it.
* UIProcess/WebPageProxy.h:

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
trunk/Source/WebKit2/UIProcess/WebPageProxy.h




Diff

Modified: trunk/Source/WebKit2/ChangeLog (157063 => 157064)

--- trunk/Source/WebKit2/ChangeLog	2013-10-07 22:58:20 UTC (rev 157063)
+++ trunk/Source/WebKit2/ChangeLog	2013-10-07 23:01:31 UTC (rev 157064)
@@ -1,3 +1,18 @@
+2013-10-07  Gustavo Noronha Silva  
+
+Reduce duplicated code in WebPageProxy
+https://bugs.webkit.org/show_bug.cgi?id=122230
+
+Reviewed by Darin Adler.
+
+* UIProcess/WebPageProxy.cpp:
+(WebKit::WebPageProxy::close): move duplicate code to resetState and call it.
+(WebKit::WebPageProxy::resetState): new private method for code that is shared between
+close and resetStateAfterProcessExited.
+(WebKit::WebPageProxy::resetStateAfterProcessExited): move duplicate code to resetState
+and call it.
+* UIProcess/WebPageProxy.h:
+
 2013-10-07  Sam Weinig  
 
 CTTE: Use references in and around DragController


Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (157063 => 157064)

--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2013-10-07 22:58:20 UTC (rev 157063)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2013-10-07 23:01:31 UTC (rev 157064)
@@ -546,78 +546,9 @@
 m_pageClient->pageClosed();
 
 m_process->disconnectFramesFromPage(this);
-m_mainFrame = 0;
 
-#if ENABLE(INSPECTOR)
-if (m_inspector) {
-m_inspector->invalidate();
-m_inspector = 0;
-}
-#endif
+resetState();
 
-#if ENABLE(FULLSCREEN_API)
-if (m_fullScreenManager) {
-m_fullScreenManager->invalidate();
-m_fullScreenManager = 0;
-}
-#endif
-
-#if ENABLE(VIBRATION)
-m_vibration->invalidate();
-#endif
-
-if (m_openPanelResultListener) {
-m_openPanelResultListener->invalidate();
-m_openPanelResultListener = 0;
-}
-
-#if ENABLE(INPUT_TYPE_COLOR)
-if (m_colorPicker) {
-m_colorPicker->invalidate();
-m_colorPicker = nullptr;
-}
-#endif
-
-#if ENABLE(GEOLOCATION)
-m_geolocationPermissionRequestManager.invalidateRequests();
-#endif
-
-m_notificationPermissionRequestManager.invalidateRequests();
-m_process->context()->supplement()->clearNotifications(this);
-
-m_toolTip = String();
-
-m_mainFrameHasHorizontalScrollbar = false;
-m_mainFrameHasVerticalScrollbar = false;
-
-m_mainFrameIsPinnedToLeftSide = false;
-m_mainFrameIsPinnedToRightSide = false;
-m_mainFrameIsPinnedToTopSide = false;
-m_mainFrameIsPinnedToBottomSide = false;
-
-m_visibleScrollerThumbRect = IntRect();
-
-invalidateCallbackMap(m_voidCallbacks);
-invalidateCallbackMap(m_dataCallbacks);
-invalidateCallbackMap(m_imageCallbacks);
-invalidateCallbackMap(m_stringCallbacks);
-m_loadDependentStringCallbackIDs.clear();
-invalidateCallbackMap(m_scriptValueCallbacks);
-invalidateCallbackMap(m_computedPagesCallbacks);
-#if PLATFORM(GTK)
-invalidateCallbackMap(m_printFinishedCallbacks);
-#endif
-
-Vector editCommandVector;
-copyToVector(m_editCommandSet, editCommandVector);
-m_editCommandSet.clear();
-for (size_t i = 0, size = editCommandVector.size(); i < size; ++i)
-editCommandVector[i]->invalidate();
-
-m_activePopupMenu = 0;
-
-m_estimatedProgress = 0.0;
-
 m_loaderClient.initialize(0);
 m_policyClient.initialize(0);
 m_formClient.initialize(0);
@@ -631,8 +562,6 @@
 m_contextMenuClient.initialize(0);
 #endif
 
-m_drawingArea = nullptr;
-
 #if PLATFORM(MAC)
 m_exposedRectChangedTimer.stop();
 #endif
@@ -641,6 +570,7 @@
 m_process->removeWebPage(m_pageID);
 m_process->removeMessageReceiver(Messages::WebPageProxy::messageReceiverName(), m_pageID);
 m_process->context()->storageManager().destroySessionStorageNamespace(m_pageID);
+m_process->context()->supplement()->clearNotifications(this);
 }
 
 bool WebPageProxy::tryClose()
@@ -3797,34 +3727,23 @@
 m_loaderClient.processDidCrash(this);
 }
 
-void WebPageProxy::resetStateAfterProcessExited()
+void WebPageProxy::resetState()
 {
-if (!isValid())
-return;
-
-ASSERT(m_pageClient);
-m_process->removeMessageReceiver(Messages::WebPageProxy::messageRecei

[webkit-changes] [157037] trunk/Tools

2013-10-07 Thread kov
Title: [157037] trunk/Tools








Revision 157037
Author k...@webkit.org
Date 2013-10-07 07:51:30 -0700 (Mon, 07 Oct 2013)


Log Message
[GTK] Fails to build with jhbuild with newer system glib
https://bugs.webkit.org/show_bug.cgi?id=122132

Patch by Gustavo Noronha Silva  on 2013-10-07
Reviewed by Martin Robinson.

Newer glib includes new symbols that some system libraries which we depend on, such as pango, have
started relying on. glib is not a dependency that should change test results, and is provided in
jhbuild with the intention of supporting the other bits that do, so using a newer stable release
should not be an issue.

* gtk/jhbuild.modules:

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/gtk/jhbuild.modules




Diff

Modified: trunk/Tools/ChangeLog (157036 => 157037)

--- trunk/Tools/ChangeLog	2013-10-07 14:44:31 UTC (rev 157036)
+++ trunk/Tools/ChangeLog	2013-10-07 14:51:30 UTC (rev 157037)
@@ -1,3 +1,17 @@
+2013-10-07  Gustavo Noronha Silva  
+
+[GTK] Fails to build with jhbuild with newer system glib
+https://bugs.webkit.org/show_bug.cgi?id=122132
+
+Reviewed by Martin Robinson.
+
+Newer glib includes new symbols that some system libraries which we depend on, such as pango, have
+started relying on. glib is not a dependency that should change test results, and is provided in
+jhbuild with the intention of supporting the other bits that do, so using a newer stable release
+should not be an issue.
+
+* gtk/jhbuild.modules:
+
 2013-10-06  Filip Pizlo  
 
 run-jsc-stress-tests shouldn't print its goofy progress meter when running on the bots


Modified: trunk/Tools/gtk/jhbuild.modules (157036 => 157037)

--- trunk/Tools/gtk/jhbuild.modules	2013-10-07 14:44:31 UTC (rev 157036)
+++ trunk/Tools/gtk/jhbuild.modules	2013-10-07 14:51:30 UTC (rev 157037)
@@ -162,9 +162,9 @@
 
   
 
-+ repo="ftp.gnome.org"
-hash="sha256:455a8abe8692c5174bcc7ffa15b96a7521a2f2f9fb47594405927c35cb9bb227"/>
+hash="sha256:7513a7de5e814ccb48206340a8773ea523d6a7bf04dc74565de69b899bc2ff32"/>
   
 
   






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


[webkit-changes] [156462] trunk

2013-09-26 Thread kov
Title: [156462] trunk








Revision 156462
Author k...@webkit.org
Date 2013-09-26 09:36:22 -0700 (Thu, 26 Sep 2013)


Log Message
[GTK] Tons of warnings caused by using FORTIFY_SOURCE in an unoptimized build
https://bugs.webkit.org/show_bug.cgi?id=121836

Patch by Gustavo Noronha Silva  on 2013-09-26
Reviewed by Martin Robinson.

* Source/autotools/SetupCompilerFlags.m4: only consider enabling FORTIFY_SOURCE if optimizations have
been enabled, since they are required for FORTIFY_SOURCE to work, and enabling FORTIFY_SOURCE unconditionally
generates warnings in newer glibc.

Modified Paths

trunk/ChangeLog
trunk/Source/autotools/SetupCompilerFlags.m4




Diff

Modified: trunk/ChangeLog (156461 => 156462)

--- trunk/ChangeLog	2013-09-26 16:18:32 UTC (rev 156461)
+++ trunk/ChangeLog	2013-09-26 16:36:22 UTC (rev 156462)
@@ -1,3 +1,14 @@
+2013-09-26  Gustavo Noronha Silva  
+
+[GTK] Tons of warnings caused by using FORTIFY_SOURCE in an unoptimized build
+https://bugs.webkit.org/show_bug.cgi?id=121836
+
+Reviewed by Martin Robinson.
+
+* Source/autotools/SetupCompilerFlags.m4: only consider enabling FORTIFY_SOURCE if optimizations have
+been enabled, since they are required for FORTIFY_SOURCE to work, and enabling FORTIFY_SOURCE unconditionally
+generates warnings in newer glibc.
+
 2013-09-25  Allan Sandfeld Jensen  
 
 [Qt] Fix build with Qt 5.2 QtPosition module


Modified: trunk/Source/autotools/SetupCompilerFlags.m4 (156461 => 156462)

--- trunk/Source/autotools/SetupCompilerFlags.m4	2013-09-26 16:18:32 UTC (rev 156461)
+++ trunk/Source/autotools/SetupCompilerFlags.m4	2013-09-26 16:36:22 UTC (rev 156462)
@@ -15,13 +15,6 @@
 CXXFLAGS="$CXXFLAGS -stdlib=libstdc++ -Wno-c++11-extensions -Qunused-arguments"
 fi
 
-if test "$c_compiler" = "gcc"; then
-CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
-fi
-if test "$cxx_compiler" = "g++"; then
-CXXFLAGS="$CXXFLAGS -D_FORTIFY_SOURCE=2"
-fi
-
 if test "$host_cpu" = "sh4"; then
 CXXFLAGS="$CXXFLAGS -mieee -w"
 CFLAGS="$CFLAGS -mieee -w"
@@ -40,6 +33,13 @@
 if test "$enable_optimizations" = "yes"; then
 CXXFLAGS="$CXXFLAGS -O2"
 CFLAGS="$CFLAGS -O2"
+
+if test "$c_compiler" = "gcc"; then
+CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
+fi
+if test "$cxx_compiler" = "g++"; then
+CXXFLAGS="$CXXFLAGS -D_FORTIFY_SOURCE=2"
+fi
 else
 CXXFLAGS="$CXXFLAGS -O0"
 CFLAGS="$CFLAGS -O0"






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


[webkit-changes] [155980] releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI

2013-09-17 Thread kov
Title: [155980] releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI








Revision 155980
Author k...@webkit.org
Date 2013-09-17 11:39:10 -0700 (Tue, 17 Sep 2013)


Log Message
Merge 155966 - Clean up the Inspector's WebSocket code and prevent it from dropping messages.

https://bugs.webkit.org/show_bug.cgi?id=121391

Reviewed by Joseph Pecoraro.

* UserInterface/InspectorFrontendHostStub.js:
(.WebInspector.InspectorFrontendHostStub.prototype.initializeWebSocket): Added. Create the socket
and call _sendPendingMessagesToBackendIfNeeded.
(.WebInspector.InspectorFrontendHostStub.prototype.sendMessageToBackend): Store messages as pending
if the socket isn't ready yet. Call _sendPendingMessagesToBackendIfNeeded.
(.WebInspector.InspectorFrontendHostStub.prototype._sendPendingMessagesToBackendIfNeeded): Added.
* UserInterface/Main.js:
(WebInspector._initializeWebSocketIfNeeded): Move socket creation to initializeWebSocket.

Modified Paths

releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/ChangeLog
releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/UserInterface/InspectorFrontendHostStub.js
releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/UserInterface/Main.js




Diff

Modified: releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/ChangeLog (155979 => 155980)

--- releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/ChangeLog	2013-09-17 18:22:02 UTC (rev 155979)
+++ releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/ChangeLog	2013-09-17 18:39:10 UTC (rev 155980)
@@ -1,3 +1,20 @@
+2013-09-17  Timothy Hatcher  
+
+Clean up the Inspector's WebSocket code and prevent it from dropping messages.
+
+https://bugs.webkit.org/show_bug.cgi?id=121391
+
+Reviewed by Joseph Pecoraro.
+
+* UserInterface/InspectorFrontendHostStub.js:
+(.WebInspector.InspectorFrontendHostStub.prototype.initializeWebSocket): Added. Create the socket
+and call _sendPendingMessagesToBackendIfNeeded.
+(.WebInspector.InspectorFrontendHostStub.prototype.sendMessageToBackend): Store messages as pending
+if the socket isn't ready yet. Call _sendPendingMessagesToBackendIfNeeded.
+(.WebInspector.InspectorFrontendHostStub.prototype._sendPendingMessagesToBackendIfNeeded): Added.
+* UserInterface/Main.js:
+(WebInspector._initializeWebSocketIfNeeded): Move socket creation to initializeWebSocket.
+
 2013-08-26  Joseph Pecoraro  
 
 Web Inspector: We should regenerate InspectorBackendCommands.js for Legacy Inspector.json versions


Modified: releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/UserInterface/InspectorFrontendHostStub.js (155979 => 155980)

--- releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/UserInterface/InspectorFrontendHostStub.js	2013-09-17 18:22:02 UTC (rev 155979)
+++ releases/WebKitGTK/webkit-2.2/Source/WebInspectorUI/UserInterface/InspectorFrontendHostStub.js	2013-09-17 18:39:10 UTC (rev 155980)
@@ -1,6 +1,7 @@
 /*
  * Copyright (C) 2009 Google Inc. All rights reserved.
  * Copyright (C) 2013 Seokju Kwon (seokju.k...@gmail.com)
+ * Copyright (C) 2013 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are
@@ -30,14 +31,30 @@
  */
 
 if (!window.InspectorFrontendHost) {
-
 WebInspector.InspectorFrontendHostStub = function()
 {
 this._attachedWindowHeight = 0;
 }
 
 WebInspector.InspectorFrontendHostStub.prototype = {
+// Public
 
+initializeWebSocket: function(url)
+{
+var socket = new WebSocket(url);
+socket.addEventListener("open", socketReady.bind(this));
+
+function socketReady()
+{
+this._socket = socket;
+
+this._socket.addEventListener("message", function(message) { InspectorBackend.dispatch(message.data); });
+this._socket.addEventListener("error", function(error) { console.error(error); });
+
+this._sendPendingMessagesToBackendIfNeeded();
+}
+},
+
 bringToFront: function()
 {
 this._windowVisible = true;
@@ -101,8 +118,16 @@
 
 sendMessageToBackend: function(message)
 {
-if (WebInspector.socket)
-WebInspector.socket.send(message);
+if (!this._socket) {
+if (!this._pendingMessages)
+this._pendingMessages = [];
+this._pendingMessages.push(message);
+return;
+}
+
+this._sendPendingMessagesToBackendIfNeeded();
+
+this._socket.send(message);
 },
 
 loadResourceSynchronously: function(url)
@@ -114,10 +139,23 @@
 if (xhr.status === 200)
 return xhr.responseText;
 return null;
+},
+
+// Private
+
+_sendPendingMessagesToBackendIfNeeded: function()
+{
+i

[webkit-changes] [155986] releases/WebKitGTK/webkit-2.2/Source/WebKit2

2013-09-17 Thread kov
Title: [155986] releases/WebKitGTK/webkit-2.2/Source/WebKit2








Revision 155986
Author k...@webkit.org
Date 2013-09-17 12:41:56 -0700 (Tue, 17 Sep 2013)


Log Message
Merge 155985 - [GTK] Test /webkit2/WebKitWebInspectorServer/test-open-debugging-session times out after r155714
https://bugs.webkit.org/show_bug.cgi?id=121383

Reviewed by Carlos Garcia Campos.

* UIProcess/API/gtk/tests/TestInspectorServer.cpp:
(openRemoteDebuggingSession): use the page contents' to check the remote debugging of the page
has been successfuly opened, as the title is no longer the same after the switch to the new
frontend.

Modified Paths

releases/WebKitGTK/webkit-2.2/Source/WebKit2/ChangeLog
releases/WebKitGTK/webkit-2.2/Source/WebKit2/UIProcess/API/gtk/tests/TestInspectorServer.cpp




Diff

Modified: releases/WebKitGTK/webkit-2.2/Source/WebKit2/ChangeLog (155985 => 155986)

--- releases/WebKitGTK/webkit-2.2/Source/WebKit2/ChangeLog	2013-09-17 19:27:30 UTC (rev 155985)
+++ releases/WebKitGTK/webkit-2.2/Source/WebKit2/ChangeLog	2013-09-17 19:41:56 UTC (rev 155986)
@@ -1,3 +1,15 @@
+2013-09-17  Gustavo Noronha Silva  
+
+[GTK] Test /webkit2/WebKitWebInspectorServer/test-open-debugging-session times out after r155714
+https://bugs.webkit.org/show_bug.cgi?id=121383
+
+Reviewed by Carlos Garcia Campos.
+
+* UIProcess/API/gtk/tests/TestInspectorServer.cpp:
+(openRemoteDebuggingSession): use the page contents' to check the remote debugging of the page
+has been successfuly opened, as the title is no longer the same after the switch to the new
+frontend.
+
 2013-09-16  Andre Moreira Magalhaes   
 
 Web Inspector: Do not try to parse incomplete HTTP requests


Modified: releases/WebKitGTK/webkit-2.2/Source/WebKit2/UIProcess/API/gtk/tests/TestInspectorServer.cpp (155985 => 155986)

--- releases/WebKitGTK/webkit-2.2/Source/WebKit2/UIProcess/API/gtk/tests/TestInspectorServer.cpp	2013-09-17 19:27:30 UTC (rev 155985)
+++ releases/WebKitGTK/webkit-2.2/Source/WebKit2/UIProcess/API/gtk/tests/TestInspectorServer.cpp	2013-09-17 19:41:56 UTC (rev 155986)
@@ -215,8 +215,8 @@
 
 static void openRemoteDebuggingSession(InspectorServerTest* test, gconstpointer)
 {
-// To test the whole pipeline this exploits a behavior of the inspector front-end which won't provide any title unless the
-// debugging session was established correctly through web socket. It should be something like "Web Inspector - ".
+// To test the whole pipeline this exploits a behavior of the inspector front-end which won't provide the page address as title unless the
+// debugging session was established correctly through web socket.
 // In our case page URL should be http://127.0.0.1:2999/
 // So this test case will fail if:
 // - The page list didn't return a valid inspector URL
@@ -235,9 +235,14 @@
 
 String resolvedURL = String("http://127.0.0.1:2999/") + String::fromUTF8(WebViewTest::_javascript_ResultToCString(_javascript_Result));
 test->loadURI(resolvedURL.utf8().data());
-test->waitUntilTitleChanged();
+test->waitUntilLoadFinished();
 
-g_assert_cmpstr(webkit_web_view_get_title(test->m_webView), ==, "Web Inspector - http://127.0.0.1:2999/");
+_javascript_Result = test->runJavaScriptAndWaitUntilFinished("window.document.getElementsByTagName('li')[0].title", &error.outPtr());
+g_assert(_javascript_Result);
+g_assert(!error.get());
+
+GOwnPtr title(WebViewTest::_javascript_ResultToCString(_javascript_Result));
+g_assert_cmpstr(title.get(), ==, "http://127.0.0.1:2999/");
 }
 
 static void sendIncompleteRequest(InspectorServerTest* test, gconstpointer)






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


[webkit-changes] [155985] trunk/Source/WebKit2

2013-09-17 Thread kov
Title: [155985] trunk/Source/WebKit2








Revision 155985
Author k...@webkit.org
Date 2013-09-17 12:27:30 -0700 (Tue, 17 Sep 2013)


Log Message
[GTK] Test /webkit2/WebKitWebInspectorServer/test-open-debugging-session times out after r155714
https://bugs.webkit.org/show_bug.cgi?id=121383

Reviewed by Carlos Garcia Campos.

* UIProcess/API/gtk/tests/TestInspectorServer.cpp:
(openRemoteDebuggingSession): use the page contents' to check the remote debugging of the page
has been successfuly opened, as the title is no longer the same after the switch to the new
frontend.

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestInspectorServer.cpp




Diff

Modified: trunk/Source/WebKit2/ChangeLog (155984 => 155985)

--- trunk/Source/WebKit2/ChangeLog	2013-09-17 19:16:01 UTC (rev 155984)
+++ trunk/Source/WebKit2/ChangeLog	2013-09-17 19:27:30 UTC (rev 155985)
@@ -1,3 +1,15 @@
+2013-09-17  Gustavo Noronha Silva  
+
+[GTK] Test /webkit2/WebKitWebInspectorServer/test-open-debugging-session times out after r155714
+https://bugs.webkit.org/show_bug.cgi?id=121383
+
+Reviewed by Carlos Garcia Campos.
+
+* UIProcess/API/gtk/tests/TestInspectorServer.cpp:
+(openRemoteDebuggingSession): use the page contents' to check the remote debugging of the page
+has been successfuly opened, as the title is no longer the same after the switch to the new
+frontend.
+
 2013-09-16  Enrica Casucci  
 
 Remove unused function didSetSelectionTypesForPasteboard from EditorClient.


Modified: trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestInspectorServer.cpp (155984 => 155985)

--- trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestInspectorServer.cpp	2013-09-17 19:16:01 UTC (rev 155984)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestInspectorServer.cpp	2013-09-17 19:27:30 UTC (rev 155985)
@@ -215,8 +215,8 @@
 
 static void openRemoteDebuggingSession(InspectorServerTest* test, gconstpointer)
 {
-// To test the whole pipeline this exploits a behavior of the inspector front-end which won't provide any title unless the
-// debugging session was established correctly through web socket. It should be something like "Web Inspector - ".
+// To test the whole pipeline this exploits a behavior of the inspector front-end which won't provide the page address as title unless the
+// debugging session was established correctly through web socket.
 // In our case page URL should be http://127.0.0.1:2999/
 // So this test case will fail if:
 // - The page list didn't return a valid inspector URL
@@ -235,9 +235,14 @@
 
 String resolvedURL = String("http://127.0.0.1:2999/") + String::fromUTF8(WebViewTest::_javascript_ResultToCString(_javascript_Result));
 test->loadURI(resolvedURL.utf8().data());
-test->waitUntilTitleChanged();
+test->waitUntilLoadFinished();
 
-g_assert_cmpstr(webkit_web_view_get_title(test->m_webView), ==, "Web Inspector - http://127.0.0.1:2999/");
+_javascript_Result = test->runJavaScriptAndWaitUntilFinished("window.document.getElementsByTagName('li')[0].title", &error.outPtr());
+g_assert(_javascript_Result);
+g_assert(!error.get());
+
+GOwnPtr title(WebViewTest::_javascript_ResultToCString(_javascript_Result));
+g_assert_cmpstr(title.get(), ==, "http://127.0.0.1:2999/");
 }
 
 static void sendIncompleteRequest(InspectorServerTest* test, gconstpointer)






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


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

2013-09-17 Thread kov
Title: [155984] trunk/Source/WebCore








Revision 155984
Author k...@webkit.org
Date 2013-09-17 12:16:01 -0700 (Tue, 17 Sep 2013)


Log Message
Unreviewed build fix after 155963.

* platform/gtk/RenderThemeGtk3.cpp:
(WebCore::getStyleContext): use nullptr instead of 0.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/platform/gtk/RenderThemeGtk3.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (155983 => 155984)

--- trunk/Source/WebCore/ChangeLog	2013-09-17 19:06:26 UTC (rev 155983)
+++ trunk/Source/WebCore/ChangeLog	2013-09-17 19:16:01 UTC (rev 155984)
@@ -1,3 +1,10 @@
+2013-09-17  Gustavo Noronha Silva  
+
+Unreviewed build fix after 155963.
+
+* platform/gtk/RenderThemeGtk3.cpp:
+(WebCore::getStyleContext): use nullptr instead of 0.
+
 2013-09-17  Alexey Proskuryakov  
 
 Make SVGTransform::valueAsString use StringBuilder


Modified: trunk/Source/WebCore/platform/gtk/RenderThemeGtk3.cpp (155983 => 155984)

--- trunk/Source/WebCore/platform/gtk/RenderThemeGtk3.cpp	2013-09-17 19:06:26 UTC (rev 155983)
+++ trunk/Source/WebCore/platform/gtk/RenderThemeGtk3.cpp	2013-09-17 19:16:01 UTC (rev 155984)
@@ -77,7 +77,7 @@
 
 static GtkStyleContext* getStyleContext(GType widgetType)
 {
-StyleContextMap::AddResult result = styleContextMap().add(widgetType, 0);
+StyleContextMap::AddResult result = styleContextMap().add(widgetType, nullptr);
 if (!result.isNewEntry)
 return result.iterator->value.get();
 






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


[webkit-changes] [155913] trunk/Source/WebKit2

2013-09-16 Thread kov
Title: [155913] trunk/Source/WebKit2








Revision 155913
Author k...@webkit.org
Date 2013-09-16 17:31:31 -0700 (Mon, 16 Sep 2013)


Log Message
Unreviewed build fix after 155905.

* Platform/CoreIPC/unix/ConnectionUnix.cpp:
(CoreIPC::Connection::sendOutgoingMessage): use OwnPtr instead of PassOwnPtr.

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/Platform/CoreIPC/unix/ConnectionUnix.cpp




Diff

Modified: trunk/Source/WebKit2/ChangeLog (155912 => 155913)

--- trunk/Source/WebKit2/ChangeLog	2013-09-16 23:39:01 UTC (rev 155912)
+++ trunk/Source/WebKit2/ChangeLog	2013-09-17 00:31:31 UTC (rev 155913)
@@ -1,3 +1,10 @@
+2013-09-16  Gustavo Noronha Silva  
+
+Unreviewed build fix after 155905.
+
+* Platform/CoreIPC/unix/ConnectionUnix.cpp:
+(CoreIPC::Connection::sendOutgoingMessage): use OwnPtr instead of PassOwnPtr.
+
 2013-09-16  Joseph Pecoraro  
 
 Add RunLoop::isMain and use it in WebKit2


Modified: trunk/Source/WebKit2/Platform/CoreIPC/unix/ConnectionUnix.cpp (155912 => 155913)

--- trunk/Source/WebKit2/Platform/CoreIPC/unix/ConnectionUnix.cpp	2013-09-16 23:39:01 UTC (rev 155912)
+++ trunk/Source/WebKit2/Platform/CoreIPC/unix/ConnectionUnix.cpp	2013-09-17 00:31:31 UTC (rev 155913)
@@ -445,7 +445,7 @@
 return m_isConnected;
 }
 
-bool Connection::sendOutgoingMessage(PassOwnPtr encoder)
+bool Connection::sendOutgoingMessage(OwnPtr encoder)
 {
 #if PLATFORM(QT)
 ASSERT(m_socketNotifier);






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


[webkit-changes] [155855] trunk/Source/WebCore/platform/gtk/po

2013-09-16 Thread kov
Title: [155855] trunk/Source/WebCore/platform/gtk/po








Revision 155855
Author k...@webkit.org
Date 2013-09-16 08:03:53 -0700 (Mon, 16 Sep 2013)


Log Message
[l10n] [pt_BR] Updated Brazilian Portuguese translation of WebKitGTK+ - 12/09/2013
https://bugs.webkit.org/show_bug.cgi?id=121255

Patch by Enrico Nicoletto  on 2013-09-16
Reviewed by Gustavo Noronha.

* pt_BR.po: updated.

Modified Paths

trunk/Source/WebCore/platform/gtk/po/ChangeLog
trunk/Source/WebCore/platform/gtk/po/pt_BR.po




Diff

Modified: trunk/Source/WebCore/platform/gtk/po/ChangeLog (155854 => 155855)

--- trunk/Source/WebCore/platform/gtk/po/ChangeLog	2013-09-16 14:00:35 UTC (rev 155854)
+++ trunk/Source/WebCore/platform/gtk/po/ChangeLog	2013-09-16 15:03:53 UTC (rev 155855)
@@ -1,3 +1,12 @@
+2013-09-16  Enrico Nicoletto  
+
+[l10n] [pt_BR] Updated Brazilian Portuguese translation of WebKitGTK+ - 12/09/2013
+https://bugs.webkit.org/show_bug.cgi?id=121255
+
+Reviewed by Gustavo Noronha.
+
+* pt_BR.po: updated.
+
 2013-09-15  Piotr DrÄ…g  
 
 [l10n] Updated Polish translation of WebKitGTK+


Modified: trunk/Source/WebCore/platform/gtk/po/pt_BR.po (155854 => 155855)

--- trunk/Source/WebCore/platform/gtk/po/pt_BR.po	2013-09-16 14:00:35 UTC (rev 155854)
+++ trunk/Source/WebCore/platform/gtk/po/pt_BR.po	2013-09-16 15:03:53 UTC (rev 155855)
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: webkit HEAD\n"
 "Report-Msgid-Bugs-To: http://bugs.webkit.org\n"
-"POT-Creation-Date: 2013-09-03 14:26+\n"
-"PO-Revision-Date: 2013-09-03 14:48-0300\n"
+"POT-Creation-Date: 2013-09-11 14:26+\n"
+"PO-Revision-Date: 2013-09-11 16:29-0300\n"
 "Last-Translator: Enrico Nicoletto \n"
 "Language-Team: Brazilian Portuguese\n"
 "Language: \n"
@@ -580,30 +580,32 @@
 msgstr "Seção de menu de cabeçalho para legendas codificadas"
 
 #: ../LocalizedStringsGtk.cpp:798
-msgctxt "Subtitles"
-msgid "Menu section heading for subtitles"
-msgstr "Seção de menu de cabeçalho para legendas"
+msgctxt "Menu section heading for subtitles"
+msgid "Subtitles"
+msgstr "Legendas"
 
 #: ../LocalizedStringsGtk.cpp:803
-msgctxt "Off"
-msgid "Menu item label for the track that represents disabling closed captions"
-msgstr ""
-"Rótulo de item de menu para a faixa que representa desabilitar legendas "
-"codificadas"
+msgctxt ""
+"Menu item label for the track that represents disabling closed captions"
+msgid "Off"
+msgstr "Desligado"
 
 #: ../LocalizedStringsGtk.cpp:808
-msgctxt "No label"
-msgid "Menu item label for a closed captions track that has no other name"
-msgstr ""
-"Rótulo de item de menu para uma faixa de legenda codificada que não possua "
-"outro nome"
+msgctxt "Menu item label for the automatically choosen track"
+msgid "Auto"
+msgstr "Automático"
 
-#: ../LocalizedStringsGtk.cpp:814
+#: ../LocalizedStringsGtk.cpp:813
+msgctxt "Menu item label for a closed captions track that has no other name"
+msgid "No label"
+msgstr "Sem rótulo"
+
+#: ../LocalizedStringsGtk.cpp:819
 msgctxt "Snapshotted Plug-In"
 msgid "Title of the label to show on a snapshotted plug-in"
 msgstr "Título do rótulo a mostrar em um plug-in capturado pela tela"
 
-#: ../LocalizedStringsGtk.cpp:819
+#: ../LocalizedStringsGtk.cpp:824
 msgctxt "Click to restart"
 msgid "Subtitle of the label to show on a snapshotted plug-in"
 msgstr "Legenda do rótulo a mostrar em um plug-in capturado pela tela"
@@ -854,7 +856,7 @@
 #: ../../../../WebKit2/UIProcess/API/gtk/WebKitURIRequest.cpp:95
 #: ../../../../WebKit2/UIProcess/API/gtk/WebKitURIResponse.cpp:99
 #: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebResource.cpp:109
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:701
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:704
 msgid "URI"
 msgstr "URI"
 
@@ -1102,7 +1104,7 @@
 #: ../../../../WebKit/gtk/webkit/webkitwebframe.cpp:460
 #: ../../../../WebKit/gtk/webkit/webkitwebhistoryitem.cpp:144
 #: ../../../../WebKit/gtk/webkit/webkitwebview.cpp:3222
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:657
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:660
 msgid "Title"
 msgstr "Título"
 
@@ -1783,12 +1785,12 @@
 "Se recursos que não são HTTPS podem ser executados, ou não, em páginas HTTPS."
 
 #: ../../../../WebKit/gtk/webkit/webkitwebview.cpp:1306
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:466
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:469
 msgid "Select Files"
 msgstr "Selecionar arquivos"
 
 #: ../../../../WebKit/gtk/webkit/webkitwebview.cpp:1306
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:466
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:469
 msgid "Select File"
 msgstr "Selecionar arquivo"
 
@@ -2414,64 +2416,64 @@
 msgid "The response of the resource"
 msgstr "A resposta do recurso"
 
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:629
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:632
 msgid "Web Context"
 msgstr "Contexto Web"
 
-#: ../

[webkit-changes] [155858] releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po

2013-09-16 Thread kov
Title: [155858] releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po








Revision 155858
Author k...@webkit.org
Date 2013-09-16 08:17:07 -0700 (Mon, 16 Sep 2013)


Log Message
Merge 155855 - [l10n] [pt_BR] Updated Brazilian Portuguese translation of WebKitGTK+ - 12/09/2013
https://bugs.webkit.org/show_bug.cgi?id=121255

Patch by Enrico Nicoletto  on 2013-09-16
Reviewed by Gustavo Noronha.

* pt_BR.po: updated.

Modified Paths

releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/ChangeLog
releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/pt_BR.po




Diff

Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/ChangeLog (155857 => 155858)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/ChangeLog	2013-09-16 15:16:46 UTC (rev 155857)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/ChangeLog	2013-09-16 15:17:07 UTC (rev 155858)
@@ -1,3 +1,12 @@
+2013-09-16  Enrico Nicoletto  
+
+[l10n] [pt_BR] Updated Brazilian Portuguese translation of WebKitGTK+ - 12/09/2013
+https://bugs.webkit.org/show_bug.cgi?id=121255
+
+Reviewed by Gustavo Noronha.
+
+* pt_BR.po: updated.
+
 2013-09-15  Piotr DrÄ…g  
 
 [l10n] Updated Polish translation of WebKitGTK+


Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/pt_BR.po (155857 => 155858)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/pt_BR.po	2013-09-16 15:16:46 UTC (rev 155857)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/pt_BR.po	2013-09-16 15:17:07 UTC (rev 155858)
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: webkit HEAD\n"
 "Report-Msgid-Bugs-To: http://bugs.webkit.org\n"
-"POT-Creation-Date: 2013-09-03 14:26+\n"
-"PO-Revision-Date: 2013-09-03 14:48-0300\n"
+"POT-Creation-Date: 2013-09-11 14:26+\n"
+"PO-Revision-Date: 2013-09-11 16:29-0300\n"
 "Last-Translator: Enrico Nicoletto \n"
 "Language-Team: Brazilian Portuguese\n"
 "Language: \n"
@@ -580,30 +580,32 @@
 msgstr "Seção de menu de cabeçalho para legendas codificadas"
 
 #: ../LocalizedStringsGtk.cpp:798
-msgctxt "Subtitles"
-msgid "Menu section heading for subtitles"
-msgstr "Seção de menu de cabeçalho para legendas"
+msgctxt "Menu section heading for subtitles"
+msgid "Subtitles"
+msgstr "Legendas"
 
 #: ../LocalizedStringsGtk.cpp:803
-msgctxt "Off"
-msgid "Menu item label for the track that represents disabling closed captions"
-msgstr ""
-"Rótulo de item de menu para a faixa que representa desabilitar legendas "
-"codificadas"
+msgctxt ""
+"Menu item label for the track that represents disabling closed captions"
+msgid "Off"
+msgstr "Desligado"
 
 #: ../LocalizedStringsGtk.cpp:808
-msgctxt "No label"
-msgid "Menu item label for a closed captions track that has no other name"
-msgstr ""
-"Rótulo de item de menu para uma faixa de legenda codificada que não possua "
-"outro nome"
+msgctxt "Menu item label for the automatically choosen track"
+msgid "Auto"
+msgstr "Automático"
 
-#: ../LocalizedStringsGtk.cpp:814
+#: ../LocalizedStringsGtk.cpp:813
+msgctxt "Menu item label for a closed captions track that has no other name"
+msgid "No label"
+msgstr "Sem rótulo"
+
+#: ../LocalizedStringsGtk.cpp:819
 msgctxt "Snapshotted Plug-In"
 msgid "Title of the label to show on a snapshotted plug-in"
 msgstr "Título do rótulo a mostrar em um plug-in capturado pela tela"
 
-#: ../LocalizedStringsGtk.cpp:819
+#: ../LocalizedStringsGtk.cpp:824
 msgctxt "Click to restart"
 msgid "Subtitle of the label to show on a snapshotted plug-in"
 msgstr "Legenda do rótulo a mostrar em um plug-in capturado pela tela"
@@ -854,7 +856,7 @@
 #: ../../../../WebKit2/UIProcess/API/gtk/WebKitURIRequest.cpp:95
 #: ../../../../WebKit2/UIProcess/API/gtk/WebKitURIResponse.cpp:99
 #: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebResource.cpp:109
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:701
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:704
 msgid "URI"
 msgstr "URI"
 
@@ -1102,7 +1104,7 @@
 #: ../../../../WebKit/gtk/webkit/webkitwebframe.cpp:460
 #: ../../../../WebKit/gtk/webkit/webkitwebhistoryitem.cpp:144
 #: ../../../../WebKit/gtk/webkit/webkitwebview.cpp:3222
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:657
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:660
 msgid "Title"
 msgstr "Título"
 
@@ -1783,12 +1785,12 @@
 "Se recursos que não são HTTPS podem ser executados, ou não, em páginas HTTPS."
 
 #: ../../../../WebKit/gtk/webkit/webkitwebview.cpp:1306
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:466
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:469
 msgid "Select Files"
 msgstr "Selecionar arquivos"
 
 #: ../../../../WebKit/gtk/webkit/webkitwebview.cpp:1306
-#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:466
+#: ../../../../WebKit2/UIProcess/API/gtk/WebKitWebView.cpp:469
 msgid "Select File"
 msgstr "Selecionar arquivo"
 
@@ -2414,64 +2416,64 @@
 msgid "The response o

[webkit-changes] [155832] trunk

2013-09-15 Thread kov
Title: [155832] trunk








Revision 155832
Author k...@webkit.org
Date 2013-09-15 18:29:43 -0700 (Sun, 15 Sep 2013)


Log Message
Unreviewed make distcheck fix.

Source/_javascript_Core:

* GNUmakefile.list.am:

Source/WebCore:

* GNUmakefile.am:
* GNUmakefile.list.am:

Source/WebKit2:

* GNUmakefile.list.am:

Source/WTF:

* GNUmakefile.list.am:

Modified Paths

trunk/Source/_javascript_Core/ChangeLog
trunk/Source/_javascript_Core/GNUmakefile.list.am
trunk/Source/WTF/ChangeLog
trunk/Source/WTF/GNUmakefile.list.am
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/GNUmakefile.am
trunk/Source/WebCore/GNUmakefile.list.am
trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/GNUmakefile.list.am
trunk/Tools/TestWebKitAPI/GNUmakefile.am




Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (155831 => 155832)

--- trunk/Source/_javascript_Core/ChangeLog	2013-09-16 01:19:35 UTC (rev 155831)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-09-16 01:29:43 UTC (rev 155832)
@@ -1,3 +1,9 @@
+2013-09-15  Gustavo Noronha Silva  
+
+Unreviewed make distcheck fix.
+
+* GNUmakefile.list.am:
+
 2013-09-15  Filip Pizlo  
 
 Deoptimize deoptimization: make DFGOSRExitCompiler64.cpp more hackable


Modified: trunk/Source/_javascript_Core/GNUmakefile.list.am (155831 => 155832)

--- trunk/Source/_javascript_Core/GNUmakefile.list.am	2013-09-16 01:19:35 UTC (rev 155831)
+++ trunk/Source/_javascript_Core/GNUmakefile.list.am	2013-09-16 01:29:43 UTC (rev 155832)
@@ -885,6 +885,7 @@
 	Source/_javascript_Core/runtime/JSLock.cpp \
 	Source/_javascript_Core/runtime/JSLock.h \
 	Source/_javascript_Core/runtime/JSMap.cpp \
+	Source/_javascript_Core/runtime/JSMap.h \
 	Source/_javascript_Core/runtime/JSNotAnObject.cpp \
 	Source/_javascript_Core/runtime/JSNotAnObject.h \
 	Source/_javascript_Core/runtime/JSObject.cpp \


Modified: trunk/Source/WTF/ChangeLog (155831 => 155832)

--- trunk/Source/WTF/ChangeLog	2013-09-16 01:19:35 UTC (rev 155831)
+++ trunk/Source/WTF/ChangeLog	2013-09-16 01:29:43 UTC (rev 155832)
@@ -1,3 +1,9 @@
+2013-09-15  Gustavo Noronha Silva  
+
+Unreviewed make distcheck fix.
+
+* GNUmakefile.list.am:
+
 2013-09-15  Patrick Gansterer  
 
 Fix build with Visual Studio 2012 after r153764.


Modified: trunk/Source/WTF/GNUmakefile.list.am (155831 => 155832)

--- trunk/Source/WTF/GNUmakefile.list.am	2013-09-16 01:19:35 UTC (rev 155831)
+++ trunk/Source/WTF/GNUmakefile.list.am	2013-09-16 01:29:43 UTC (rev 155832)
@@ -80,6 +80,7 @@
 Source/WTF/wtf/MD5.h \
 Source/WTF/wtf/MainThread.cpp \
 Source/WTF/wtf/MainThread.h \
+Source/WTF/wtf/MallocPtr.h \
 Source/WTF/wtf/MathExtras.h \
 Source/WTF/wtf/MediaTime.h \
 Source/WTF/wtf/MediaTime.cpp \
@@ -94,6 +95,7 @@
 Source/WTF/wtf/NumberOfCores.h \
 Source/WTF/wtf/RAMSize.cpp \
 Source/WTF/wtf/RAMSize.h \
+Source/WTF/wtf/Ref.h \
 Source/WTF/wtf/ObjcRuntimeExtras.h \
 Source/WTF/wtf/OSAllocator.h \
 Source/WTF/wtf/OSAllocatorPosix.cpp \


Modified: trunk/Source/WebCore/ChangeLog (155831 => 155832)

--- trunk/Source/WebCore/ChangeLog	2013-09-16 01:19:35 UTC (rev 155831)
+++ trunk/Source/WebCore/ChangeLog	2013-09-16 01:29:43 UTC (rev 155832)
@@ -1,3 +1,10 @@
+2013-09-15  Gustavo Noronha Silva  
+
+Unreviewed make distcheck fix.
+
+* GNUmakefile.am:
+* GNUmakefile.list.am:
+
 2013-09-15  Patrick Gansterer  
 
 [WIN] Fix build without precompiled header after r154146.


Modified: trunk/Source/WebCore/GNUmakefile.am (155831 => 155832)

--- trunk/Source/WebCore/GNUmakefile.am	2013-09-16 01:19:35 UTC (rev 155831)
+++ trunk/Source/WebCore/GNUmakefile.am	2013-09-16 01:29:43 UTC (rev 155832)
@@ -622,6 +622,9 @@
 	$(wildcard $(srcdir)/Source/WebCore/html/track/*.idl) \
 	$(wildcard $(srcdir)/Source/WebCore/html/*.idl) \
 	$(wildcard $(srcdir)/Source/WebCore/inspector/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/inspector/*.css) \
+	$(wildcard $(srcdir)/Source/WebCore/inspector/*.js) \
+	$(wildcard $(srcdir)/Source/WebCore/inspector/Scripts/*.py) \
 	$(wildcard $(srcdir)/Source/WebCore/loader/appcache/*.idl) \
 	$(wildcard $(srcdir)/Source/WebCore/page/*.idl) \
 	$(wildcard $(srcdir)/Source/WebCore/plugins/*.idl) \


Modified: trunk/Source/WebCore/GNUmakefile.list.am (155831 => 155832)

--- trunk/Source/WebCore/GNUmakefile.list.am	2013-09-16 01:19:35 UTC (rev 155831)
+++ trunk/Source/WebCore/GNUmakefile.list.am	2013-09-16 01:29:43 UTC (rev 155832)
@@ -2291,6 +2291,7 @@
 	Source/WebCore/bindings/js/CachedScriptSourceProvider.h \
 	Source/WebCore/bindings/js/CallbackFunction.cpp \
 	Source/WebCore/bindings/js/CallbackFunction.h \
+	Source/WebCore/bindings/js/DOMConstructorWithDocument.h \
 	Source/WebCore/bindings/js/DOMObjectHashTableMap.cpp \
 	Source/WebCore/bindings/js/DOMObjectHashTableMap.h \
 	Source/WebCore/bindings/js/DOMRequestState.h \
@@ -2384,6 +2385,7 @@
 	Source/WebCore/bindings/js/JSHTMLInputElementCustom.cpp \
 	Source/WebCore/bindings/js/JSHT

[webkit-changes] [155440] releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po

2013-09-10 Thread kov
Title: [155440] releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po








Revision 155440
Author k...@webkit.org
Date 2013-09-10 06:59:31 -0700 (Tue, 10 Sep 2013)


Log Message
Merge 155439 - [l10n] [pt_BR] Updated Brazilian Portuguese translation of WebKitGTK+
https://bugs.webkit.org/show_bug.cgi?id=120642

Patch by Enrico Nicoletto  on 2013-09-10
Reviewed by Gustavo Noronha.

* pt_BR.po: updated.

Modified Paths

releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/ChangeLog
releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/pt_BR.po




Diff

Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/ChangeLog (155439 => 155440)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/ChangeLog	2013-09-10 13:56:29 UTC (rev 155439)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/ChangeLog	2013-09-10 13:59:31 UTC (rev 155440)
@@ -1,3 +1,12 @@
+2013-09-10  Enrico Nicoletto  
+
+[l10n] [pt_BR] Updated Brazilian Portuguese translation of WebKitGTK+
+https://bugs.webkit.org/show_bug.cgi?id=120642
+
+Reviewed by Gustavo Noronha.
+
+* pt_BR.po: updated.
+
 2013-08-28  Christian Kirbach  
 
 [GTK] Please incorporate German translation update


Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/pt_BR.po (155439 => 155440)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/pt_BR.po	2013-09-10 13:56:29 UTC (rev 155439)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/platform/gtk/po/pt_BR.po	2013-09-10 13:59:31 UTC (rev 155440)
@@ -8,10 +8,11 @@
 msgstr ""
 "Project-Id-Version: webkit HEAD\n"
 "Report-Msgid-Bugs-To: http://bugs.webkit.org\n"
-"POT-Creation-Date: 2013-08-19 02:25+\n"
-"PO-Revision-Date: 2013-08-22 22:34-0300\n"
+"POT-Creation-Date: 2013-09-03 14:26+\n"
+"PO-Revision-Date: 2013-09-03 14:48-0300\n"
 "Last-Translator: Enrico Nicoletto \n"
 "Language-Team: Brazilian Portuguese\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -323,282 +324,286 @@
 msgstr "rodapé"
 
 #: ../LocalizedStringsGtk.cpp:457
+msgid "cancel"
+msgstr "cancelar"
+
+#: ../LocalizedStringsGtk.cpp:462
 msgid "press"
 msgstr "pressionar"
 
-#: ../LocalizedStringsGtk.cpp:462
+#: ../LocalizedStringsGtk.cpp:467
 msgid "select"
 msgstr "selecionar"
 
-#: ../LocalizedStringsGtk.cpp:467
+#: ../LocalizedStringsGtk.cpp:472
 msgid "activate"
 msgstr "ativar"
 
-#: ../LocalizedStringsGtk.cpp:472
+#: ../LocalizedStringsGtk.cpp:477
 msgid "uncheck"
 msgstr "desmarcar"
 
-#: ../LocalizedStringsGtk.cpp:477
+#: ../LocalizedStringsGtk.cpp:482
 msgid "check"
 msgstr "marcar"
 
-#: ../LocalizedStringsGtk.cpp:482
+#: ../LocalizedStringsGtk.cpp:487
 msgid "jump"
 msgstr "pular"
 
-#: ../LocalizedStringsGtk.cpp:502
+#: ../LocalizedStringsGtk.cpp:507
 msgid "Missing Plug-in"
 msgstr "Plug-in em falta"
 
-#: ../LocalizedStringsGtk.cpp:508
+#: ../LocalizedStringsGtk.cpp:513
 msgid "Plug-in Failure"
 msgstr "Falha em plug-in"
 
 #. FIXME: If this file gets localized, this should really be localized as one string with a wildcard for the number.
-#: ../LocalizedStringsGtk.cpp:532
+#: ../LocalizedStringsGtk.cpp:537
 msgid " files"
 msgstr " arquivos"
 
-#: ../LocalizedStringsGtk.cpp:537
+#: ../LocalizedStringsGtk.cpp:542
 msgid "Unknown"
 msgstr "Desconhecido"
 
-#: ../LocalizedStringsGtk.cpp:542
+#: ../LocalizedStringsGtk.cpp:547
 #, c-format
 msgctxt "Title string for images"
 msgid "%s  (%dx%d pixels)"
 msgstr "%s  (%dx%d pixels)"
 
-#: ../LocalizedStringsGtk.cpp:554
+#: ../LocalizedStringsGtk.cpp:559
 msgid "Loading..."
 msgstr "Carregando..."
 
-#: ../LocalizedStringsGtk.cpp:559
+#: ../LocalizedStringsGtk.cpp:564
 msgid "Live Broadcast"
 msgstr "Transmissão ao vivo"
 
-#: ../LocalizedStringsGtk.cpp:565
+#: ../LocalizedStringsGtk.cpp:570
 msgid "audio playback"
 msgstr "Reprodução de áudio"
 
-#: ../LocalizedStringsGtk.cpp:567
+#: ../LocalizedStringsGtk.cpp:572
 msgid "video playback"
 msgstr "Reprodução de vídeo"
 
-#: ../LocalizedStringsGtk.cpp:569
+#: ../LocalizedStringsGtk.cpp:574
 msgid "mute"
 msgstr "Mudo"
 
-#: ../LocalizedStringsGtk.cpp:571
+#: ../LocalizedStringsGtk.cpp:576
 msgid "unmute"
 msgstr "Desligar mudo"
 
-#: ../LocalizedStringsGtk.cpp:573
+#: ../LocalizedStringsGtk.cpp:578
 msgid "play"
 msgstr "Reproduzir"
 
-#: ../LocalizedStringsGtk.cpp:575
+#: ../LocalizedStringsGtk.cpp:580
 msgid "pause"
 msgstr "Pausar"
 
-#: ../LocalizedStringsGtk.cpp:577
+#: ../LocalizedStringsGtk.cpp:582
 msgid "movie time"
 msgstr "Tempo do filme"
 
-#: ../LocalizedStringsGtk.cpp:579
+#: ../LocalizedStringsGtk.cpp:584
 msgid "timeline slider thumb"
 msgstr "Puxador da linha do tempo"
 
-#: ../LocalizedStringsGtk.cpp:581
+#: ../LocalizedStringsGtk.cpp:586
 msgid "back 30 seconds"
 msgstr "Voltar 30 segundos"
 
-#: ../LocalizedStringsGtk.cpp:583
+#: ../LocalizedStringsGtk.cpp:588
 msgid "return to realtime"
 msgstr "Retornar ao tempo real"
 

[webkit-changes] [155439] trunk/Source/WebCore/platform/gtk/po

2013-09-10 Thread kov
Title: [155439] trunk/Source/WebCore/platform/gtk/po








Revision 155439
Author k...@webkit.org
Date 2013-09-10 06:56:29 -0700 (Tue, 10 Sep 2013)


Log Message
[l10n] [pt_BR] Updated Brazilian Portuguese translation of WebKitGTK+
https://bugs.webkit.org/show_bug.cgi?id=120642

Patch by Enrico Nicoletto  on 2013-09-10
Reviewed by Gustavo Noronha.

* pt_BR.po: updated.

Modified Paths

trunk/Source/WebCore/platform/gtk/po/ChangeLog
trunk/Source/WebCore/platform/gtk/po/pt_BR.po




Diff

Modified: trunk/Source/WebCore/platform/gtk/po/ChangeLog (155438 => 155439)

--- trunk/Source/WebCore/platform/gtk/po/ChangeLog	2013-09-10 13:51:24 UTC (rev 155438)
+++ trunk/Source/WebCore/platform/gtk/po/ChangeLog	2013-09-10 13:56:29 UTC (rev 155439)
@@ -1,3 +1,12 @@
+2013-09-10  Enrico Nicoletto  
+
+[l10n] [pt_BR] Updated Brazilian Portuguese translation of WebKitGTK+
+https://bugs.webkit.org/show_bug.cgi?id=120642
+
+Reviewed by Gustavo Noronha.
+
+* pt_BR.po: updated.
+
 2013-08-28  Christian Kirbach  
 
 [GTK] Please incorporate German translation update


Modified: trunk/Source/WebCore/platform/gtk/po/pt_BR.po (155438 => 155439)

--- trunk/Source/WebCore/platform/gtk/po/pt_BR.po	2013-09-10 13:51:24 UTC (rev 155438)
+++ trunk/Source/WebCore/platform/gtk/po/pt_BR.po	2013-09-10 13:56:29 UTC (rev 155439)
@@ -8,10 +8,11 @@
 msgstr ""
 "Project-Id-Version: webkit HEAD\n"
 "Report-Msgid-Bugs-To: http://bugs.webkit.org\n"
-"POT-Creation-Date: 2013-08-19 02:25+\n"
-"PO-Revision-Date: 2013-08-22 22:34-0300\n"
+"POT-Creation-Date: 2013-09-03 14:26+\n"
+"PO-Revision-Date: 2013-09-03 14:48-0300\n"
 "Last-Translator: Enrico Nicoletto \n"
 "Language-Team: Brazilian Portuguese\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -323,282 +324,286 @@
 msgstr "rodapé"
 
 #: ../LocalizedStringsGtk.cpp:457
+msgid "cancel"
+msgstr "cancelar"
+
+#: ../LocalizedStringsGtk.cpp:462
 msgid "press"
 msgstr "pressionar"
 
-#: ../LocalizedStringsGtk.cpp:462
+#: ../LocalizedStringsGtk.cpp:467
 msgid "select"
 msgstr "selecionar"
 
-#: ../LocalizedStringsGtk.cpp:467
+#: ../LocalizedStringsGtk.cpp:472
 msgid "activate"
 msgstr "ativar"
 
-#: ../LocalizedStringsGtk.cpp:472
+#: ../LocalizedStringsGtk.cpp:477
 msgid "uncheck"
 msgstr "desmarcar"
 
-#: ../LocalizedStringsGtk.cpp:477
+#: ../LocalizedStringsGtk.cpp:482
 msgid "check"
 msgstr "marcar"
 
-#: ../LocalizedStringsGtk.cpp:482
+#: ../LocalizedStringsGtk.cpp:487
 msgid "jump"
 msgstr "pular"
 
-#: ../LocalizedStringsGtk.cpp:502
+#: ../LocalizedStringsGtk.cpp:507
 msgid "Missing Plug-in"
 msgstr "Plug-in em falta"
 
-#: ../LocalizedStringsGtk.cpp:508
+#: ../LocalizedStringsGtk.cpp:513
 msgid "Plug-in Failure"
 msgstr "Falha em plug-in"
 
 #. FIXME: If this file gets localized, this should really be localized as one string with a wildcard for the number.
-#: ../LocalizedStringsGtk.cpp:532
+#: ../LocalizedStringsGtk.cpp:537
 msgid " files"
 msgstr " arquivos"
 
-#: ../LocalizedStringsGtk.cpp:537
+#: ../LocalizedStringsGtk.cpp:542
 msgid "Unknown"
 msgstr "Desconhecido"
 
-#: ../LocalizedStringsGtk.cpp:542
+#: ../LocalizedStringsGtk.cpp:547
 #, c-format
 msgctxt "Title string for images"
 msgid "%s  (%dx%d pixels)"
 msgstr "%s  (%dx%d pixels)"
 
-#: ../LocalizedStringsGtk.cpp:554
+#: ../LocalizedStringsGtk.cpp:559
 msgid "Loading..."
 msgstr "Carregando..."
 
-#: ../LocalizedStringsGtk.cpp:559
+#: ../LocalizedStringsGtk.cpp:564
 msgid "Live Broadcast"
 msgstr "Transmissão ao vivo"
 
-#: ../LocalizedStringsGtk.cpp:565
+#: ../LocalizedStringsGtk.cpp:570
 msgid "audio playback"
 msgstr "Reprodução de áudio"
 
-#: ../LocalizedStringsGtk.cpp:567
+#: ../LocalizedStringsGtk.cpp:572
 msgid "video playback"
 msgstr "Reprodução de vídeo"
 
-#: ../LocalizedStringsGtk.cpp:569
+#: ../LocalizedStringsGtk.cpp:574
 msgid "mute"
 msgstr "Mudo"
 
-#: ../LocalizedStringsGtk.cpp:571
+#: ../LocalizedStringsGtk.cpp:576
 msgid "unmute"
 msgstr "Desligar mudo"
 
-#: ../LocalizedStringsGtk.cpp:573
+#: ../LocalizedStringsGtk.cpp:578
 msgid "play"
 msgstr "Reproduzir"
 
-#: ../LocalizedStringsGtk.cpp:575
+#: ../LocalizedStringsGtk.cpp:580
 msgid "pause"
 msgstr "Pausar"
 
-#: ../LocalizedStringsGtk.cpp:577
+#: ../LocalizedStringsGtk.cpp:582
 msgid "movie time"
 msgstr "Tempo do filme"
 
-#: ../LocalizedStringsGtk.cpp:579
+#: ../LocalizedStringsGtk.cpp:584
 msgid "timeline slider thumb"
 msgstr "Puxador da linha do tempo"
 
-#: ../LocalizedStringsGtk.cpp:581
+#: ../LocalizedStringsGtk.cpp:586
 msgid "back 30 seconds"
 msgstr "Voltar 30 segundos"
 
-#: ../LocalizedStringsGtk.cpp:583
+#: ../LocalizedStringsGtk.cpp:588
 msgid "return to realtime"
 msgstr "Retornar ao tempo real"
 
-#: ../LocalizedStringsGtk.cpp:585
+#: ../LocalizedStringsGtk.cpp:590
 msgid "elapsed time"
 msgstr "Tempo decorrido"
 
-#: ../LocalizedStringsGtk.cpp:587
+#: ../LocalizedStringsGtk.cpp:592
 msgid "remaining time"
 msgstr "Tempo r

[webkit-changes] [155353] trunk/Source/WebKit2

2013-09-09 Thread kov
Title: [155353] trunk/Source/WebKit2








Revision 155353
Author k...@webkit.org
Date 2013-09-09 09:35:26 -0700 (Mon, 09 Sep 2013)


Log Message
Unreviewed build fix.

* GNUmakefile.list.am: Typo - left-over \ from a copy/paste, most likely.

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/GNUmakefile.list.am




Diff

Modified: trunk/Source/WebKit2/ChangeLog (155352 => 155353)

--- trunk/Source/WebKit2/ChangeLog	2013-09-09 16:27:54 UTC (rev 155352)
+++ trunk/Source/WebKit2/ChangeLog	2013-09-09 16:35:26 UTC (rev 155353)
@@ -1,3 +1,9 @@
+2013-09-09  Gustavo Noronha Silva  
+
+Unreviewed build fix.
+
+* GNUmakefile.list.am: Typo - left-over \ from a copy/paste, most likely.
+
 2013-09-09  Anton Obzhirov  
 
 [GTK] Cancel the current active WebKitAuthenticationRequest on load failed


Modified: trunk/Source/WebKit2/GNUmakefile.list.am (155352 => 155353)

--- trunk/Source/WebKit2/GNUmakefile.list.am	2013-09-09 16:27:54 UTC (rev 155352)
+++ trunk/Source/WebKit2/GNUmakefile.list.am	2013-09-09 16:35:26 UTC (rev 155353)
@@ -1262,7 +1262,7 @@
 if TARGET_X11
 webkit2_sources += \
 	Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp \
-	Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp \
+	Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
 else
 webkit2_sources += \
 	Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModuleNone.cpp \






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


[webkit-changes] [154844] releases/WebKitGTK/webkit-2.2

2013-08-29 Thread kov
Title: [154844] releases/WebKitGTK/webkit-2.2








Revision 154844
Author k...@webkit.org
Date 2013-08-29 14:20:57 -0700 (Thu, 29 Aug 2013)


Log Message
Unreviewed. Update NEWS and Versions.m4 for 2.1.90.1 release.

.:

* Source/autotools/Versions.m4: bump to 2.1.90.1.
* configure.ac: Add webkit_patch_version to AC_INIT call.

Sources/WebKit/gtk:

* NEWS: Add release notes.

Modified Paths

releases/WebKitGTK/webkit-2.2/ChangeLog
releases/WebKitGTK/webkit-2.2/Source/WebKit/gtk/ChangeLog
releases/WebKitGTK/webkit-2.2/Source/WebKit/gtk/NEWS
releases/WebKitGTK/webkit-2.2/Source/autotools/Versions.m4
releases/WebKitGTK/webkit-2.2/configure.ac




Diff

Modified: releases/WebKitGTK/webkit-2.2/ChangeLog (154843 => 154844)

--- releases/WebKitGTK/webkit-2.2/ChangeLog	2013-08-29 21:20:03 UTC (rev 154843)
+++ releases/WebKitGTK/webkit-2.2/ChangeLog	2013-08-29 21:20:57 UTC (rev 154844)
@@ -1,3 +1,10 @@
+2013-08-29  Gustavo Noronha Silva  
+
+Unreviewed. Update NEWS and Versions.m4 for 2.1.90.1 release.
+
+* Source/autotools/Versions.m4: bump to 2.1.90.1.
+* configure.ac: Add webkit_patch_version to AC_INIT call.
+
 2013-08-28  Gustavo Noronha Silva  
 
 [GTK] Enable maintainer mode configure switch


Modified: releases/WebKitGTK/webkit-2.2/Source/WebKit/gtk/ChangeLog (154843 => 154844)

--- releases/WebKitGTK/webkit-2.2/Source/WebKit/gtk/ChangeLog	2013-08-29 21:20:03 UTC (rev 154843)
+++ releases/WebKitGTK/webkit-2.2/Source/WebKit/gtk/ChangeLog	2013-08-29 21:20:57 UTC (rev 154844)
@@ -1,3 +1,9 @@
+2013-08-29  Gustavo Noronha Silva  
+
+Unreviewed. Update NEWS and Versions.m4 for 2.1.90.1 release.
+
+* NEWS: Add release notes.
+
 2013-08-27  Carlos Garcia Campos  
 
 Unreviewed. Update NEWS and Versions.m4 for 2.1.90 release.


Modified: releases/WebKitGTK/webkit-2.2/Source/WebKit/gtk/NEWS (154843 => 154844)

--- releases/WebKitGTK/webkit-2.2/Source/WebKit/gtk/NEWS	2013-08-29 21:20:03 UTC (rev 154843)
+++ releases/WebKitGTK/webkit-2.2/Source/WebKit/gtk/NEWS	2013-08-29 21:20:57 UTC (rev 154844)
@@ -1,3 +1,14 @@
+===
+WebKitGTK+ 2.1.90.1
+===
+
+What's new in WebKitGTK+ 2.1.90.1?
+
+  - Adds support for maintainer mode, so that the GNOME continuous
+integration will be able to forbid autotools regeneration
+  - Added DOM bindings symbols that got removed from the IDL back for
+ABI compatibility
+
 =
 WebKitGTK+ 2.1.90
 =


Modified: releases/WebKitGTK/webkit-2.2/Source/autotools/Versions.m4 (154843 => 154844)

--- releases/WebKitGTK/webkit-2.2/Source/autotools/Versions.m4	2013-08-29 21:20:03 UTC (rev 154843)
+++ releases/WebKitGTK/webkit-2.2/Source/autotools/Versions.m4	2013-08-29 21:20:57 UTC (rev 154844)
@@ -1,6 +1,7 @@
 m4_define([webkit_major_version], [2])
 m4_define([webkit_minor_version], [1])
 m4_define([webkit_micro_version], [90])
+m4_define([webkit_patch_version], [1])
 
 # This is the version we'll be using as part of our User-Agent string,
 # e.g., AppleWebKit/$(webkit_user_agent_version) ...
@@ -11,9 +12,9 @@
 
 # Libtool library version, not to confuse with API version.
 # See http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
-m4_define([libwebkitgtk_version], [19:4:19])
-m4_define([libjavascriptcoregtk_version], [15:1:15])
-m4_define([libwebkit2gtk_version], [28:0:3])
+m4_define([libwebkitgtk_version], [19:5:19])
+m4_define([libjavascriptcoregtk_version], [15:2:15])
+m4_define([libwebkit2gtk_version], [28:1:3])
 
 m4_define([gtk2_required_version], [2.24.10])
 m4_define([gail2_required_version], [1.8])


Modified: releases/WebKitGTK/webkit-2.2/configure.ac (154843 => 154844)

--- releases/WebKitGTK/webkit-2.2/configure.ac	2013-08-29 21:20:03 UTC (rev 154843)
+++ releases/WebKitGTK/webkit-2.2/configure.ac	2013-08-29 21:20:57 UTC (rev 154844)
@@ -2,7 +2,7 @@
 
 m4_include([Source/autotools/Versions.m4])
 
-AC_INIT([WebKitGTK],[webkit_major_version.webkit_minor_version.webkit_micro_version],[http://bugs.webkit.org/])
+AC_INIT([WebKitGTK],[webkit_major_version.webkit_minor_version.webkit_micro_version.webkit_patch_version],[http://bugs.webkit.org/])
 AC_CONFIG_MACRO_DIR([Source/autotools])
 AC_CONFIG_AUX_DIR([Source/autotools])
 AC_SUBST(ACLOCAL_AMFLAGS, "-I Source/autotools")






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


[webkit-changes] [154796] releases/WebKitGTK/webkit-2.2/Source/WebCore

2013-08-28 Thread kov
Title: [154796] releases/WebKitGTK/webkit-2.2/Source/WebCore








Revision 154796
Author k...@webkit.org
Date 2013-08-28 17:06:30 -0700 (Wed, 28 Aug 2013)


Log Message
Merge 154794 - Unreviewed build fix - copy/paste failure, copied too much.

* bindings/gobject/WebKitDOMCustom.h:

Modified Paths

releases/WebKitGTK/webkit-2.2/Source/WebCore/ChangeLog
releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.h




Diff

Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/ChangeLog (154795 => 154796)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/ChangeLog	2013-08-28 23:59:25 UTC (rev 154795)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/ChangeLog	2013-08-29 00:06:30 UTC (rev 154796)
@@ -1,5 +1,11 @@
 2013-08-28  Gustavo Noronha Silva  
 
+Unreviewed build fix - copy/paste failure, copied too much.
+
+* bindings/gobject/WebKitDOMCustom.h:
+
+2013-08-28  Gustavo Noronha Silva  
+
 [GTK] HTMLElement lost setID and getID - need to add compatibility symbols
 https://bugs.webkit.org/show_bug.cgi?id=120440
 


Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.h (154795 => 154796)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.h	2013-08-28 23:59:25 UTC (rev 154795)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.h	2013-08-29 00:06:30 UTC (rev 154796)
@@ -114,15 +114,6 @@
 WEBKIT_API void webkit_dom_html_element_set_id(WebKitDOMHTMLElement* self, const gchar* value);
 
 /**
- * webkit_dom_html_element_get_title:
- * @self: A #WebKitDOMHTMLElement
- *
- * Returns:
- *
-**/
-WEBKIT_API gchar* webkit_dom_html_element_get_title(WebKitDOMHTMLElement* self);
-
-/**
  * webkit_dom_webkit_named_flow_get_overflow:
  * @flow: A #WebKitDOMWebKitNamedFlow
  *






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


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

2013-08-28 Thread kov
Title: [154794] trunk/Source/WebCore








Revision 154794
Author k...@webkit.org
Date 2013-08-28 16:58:20 -0700 (Wed, 28 Aug 2013)


Log Message
Unreviewed build fix - copy/paste failure, copied too much.

* bindings/gobject/WebKitDOMCustom.h:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (154793 => 154794)

--- trunk/Source/WebCore/ChangeLog	2013-08-28 23:54:05 UTC (rev 154793)
+++ trunk/Source/WebCore/ChangeLog	2013-08-28 23:58:20 UTC (rev 154794)
@@ -1,3 +1,9 @@
+2013-08-28  Gustavo Noronha Silva  
+
+Unreviewed build fix - copy/paste failure, copied too much.
+
+* bindings/gobject/WebKitDOMCustom.h:
+
 2013-08-28  Dean Jackson  
 
 [WebGL] CoreGraphics can provide greyscale image data


Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h (154793 => 154794)

--- trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h	2013-08-28 23:54:05 UTC (rev 154793)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h	2013-08-28 23:58:20 UTC (rev 154794)
@@ -114,15 +114,6 @@
 WEBKIT_API void webkit_dom_html_element_set_id(WebKitDOMHTMLElement* self, const gchar* value);
 
 /**
- * webkit_dom_html_element_get_title:
- * @self: A #WebKitDOMHTMLElement
- *
- * Returns:
- *
-**/
-WEBKIT_API gchar* webkit_dom_html_element_get_title(WebKitDOMHTMLElement* self);
-
-/**
  * webkit_dom_webkit_named_flow_get_overflow:
  * @flow: A #WebKitDOMWebKitNamedFlow
  *






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


[webkit-changes] [154789] releases/WebKitGTK/webkit-2.2

2013-08-28 Thread kov
Title: [154789] releases/WebKitGTK/webkit-2.2








Revision 154789
Author k...@webkit.org
Date 2013-08-28 16:37:28 -0700 (Wed, 28 Aug 2013)


Log Message
Merge 154787 - [GTK] Enable maintainer mode configure switch
https://bugs.webkit.org/show_bug.cgi?id=120424

Reviewed by Martin Robinson.

The maintainer mode feature is used by ostree and other automated builders to ensure no autotools
regeneration will happen for a regular tarball build; ostree builders, for instance, are very
conservative with toolchain upgrades, and are still using aclocal 1.12. WebKit's latest tarball
(2.1.90) for some reason tries to regenerate build files, and the build fails because it can't find
the version of aclocal that was used for generating the tarball (1.13).

* configure.ac: enable maintainer mode feature.

Modified Paths

releases/WebKitGTK/webkit-2.2/ChangeLog
releases/WebKitGTK/webkit-2.2/configure.ac




Diff

Modified: releases/WebKitGTK/webkit-2.2/ChangeLog (154788 => 154789)

--- releases/WebKitGTK/webkit-2.2/ChangeLog	2013-08-28 23:36:41 UTC (rev 154788)
+++ releases/WebKitGTK/webkit-2.2/ChangeLog	2013-08-28 23:37:28 UTC (rev 154789)
@@ -1,3 +1,18 @@
+2013-08-28  Gustavo Noronha Silva  
+
+[GTK] Enable maintainer mode configure switch
+https://bugs.webkit.org/show_bug.cgi?id=120424
+
+Reviewed by Martin Robinson.
+
+The maintainer mode feature is used by ostree and other automated builders to ensure no autotools
+regeneration will happen for a regular tarball build; ostree builders, for instance, are very
+conservative with toolchain upgrades, and are still using aclocal 1.12. WebKit's latest tarball
+(2.1.90) for some reason tries to regenerate build files, and the build fails because it can't find
+the version of aclocal that was used for generating the tarball (1.13).
+
+* configure.ac: enable maintainer mode feature.
+
 2013-08-27  Carlos Garcia Campos  
 
 Unreviewed. Update NEWS and Versions.m4 for 2.1.90 release.


Modified: releases/WebKitGTK/webkit-2.2/configure.ac (154788 => 154789)

--- releases/WebKitGTK/webkit-2.2/configure.ac	2013-08-28 23:36:41 UTC (rev 154788)
+++ releases/WebKitGTK/webkit-2.2/configure.ac	2013-08-28 23:37:28 UTC (rev 154789)
@@ -32,6 +32,7 @@
 
 # We would put AM_INIT_AUTOMAKE into SetupAutomake.m4, but seems to cause autoconf errors.
 AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz no-dist-gzip tar-ustar])
+AM_MAINTAINER_MODE([enable])
 m4_include([Source/autotools/SetupAutomake.m4])
 
 ##






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


[webkit-changes] [154788] releases/WebKitGTK/webkit-2.2/Source/WebCore

2013-08-28 Thread kov
Title: [154788] releases/WebKitGTK/webkit-2.2/Source/WebCore








Revision 154788
Author k...@webkit.org
Date 2013-08-28 16:36:41 -0700 (Wed, 28 Aug 2013)


Log Message
Merge 154786 - [GTK] HTMLElement lost setID and getID - need to add compatibility symbols
https://bugs.webkit.org/show_bug.cgi?id=120440

Reviewed by Martin Robinson.

No tests, just adding compatibility symbols.

setID and getID were removed, and the parent class (Element) ones should be used instead.
We need to keep our ABI compatible, though, so add compatibility symbols.

* bindings/gobject/WebKitDOMCustom.cpp:
(webkit_dom_html_element_get_id):
(webkit_dom_html_element_set_id):
* bindings/gobject/WebKitDOMCustom.h:

Modified Paths

releases/WebKitGTK/webkit-2.2/Source/WebCore/ChangeLog
releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp
releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.h




Diff

Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/ChangeLog (154787 => 154788)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/ChangeLog	2013-08-28 23:35:34 UTC (rev 154787)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/ChangeLog	2013-08-28 23:36:41 UTC (rev 154788)
@@ -1,3 +1,20 @@
+2013-08-28  Gustavo Noronha Silva  
+
+[GTK] HTMLElement lost setID and getID - need to add compatibility symbols
+https://bugs.webkit.org/show_bug.cgi?id=120440
+
+Reviewed by Martin Robinson.
+
+No tests, just adding compatibility symbols.
+
+setID and getID were removed, and the parent class (Element) ones should be used instead.
+We need to keep our ABI compatible, though, so add compatibility symbols.
+
+* bindings/gobject/WebKitDOMCustom.cpp:
+(webkit_dom_html_element_get_id):
+(webkit_dom_html_element_set_id):
+* bindings/gobject/WebKitDOMCustom.h:
+
 2013-08-27  Xabier Rodriguez Calvar  
 
 [GTK] Volume slider shows incorrect track when muted


Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp (154787 => 154788)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp	2013-08-28 23:35:34 UTC (rev 154787)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp	2013-08-28 23:36:41 UTC (rev 154788)
@@ -64,6 +64,18 @@
 webkit_dom_element_set_class_name(WEBKIT_DOM_ELEMENT(element), value);
 }
 
+gchar* webkit_dom_html_element_get_id(WebKitDOMHTMLElement* element)
+{
+g_warning("The get_id method on WebKitDOMHTMLElement is deprecated. Use the one in WebKitDOMElement instead.");
+return webkit_dom_element_get_id(WEBKIT_DOM_ELEMENT(element));
+}
+
+void webkit_dom_html_element_set_id(WebKitDOMHTMLElement* element, const gchar* value)
+{
+g_warning("The set_id method on WebKitDOMHTMLElement is deprecated. Use the one in WebKitDOMElement instead.");
+webkit_dom_element_set_id(WEBKIT_DOM_ELEMENT(element), value);
+}
+
 gboolean webkit_dom_webkit_named_flow_get_overflow(WebKitDOMWebKitNamedFlow* flow)
 {
 g_warning("The WebKitDOMWebKitNamedFlow::overflow property has been renamed to WebKitDOMWebKitNamedFlow::overset. Please update your code to use the new name.");


Modified: releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.h (154787 => 154788)

--- releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.h	2013-08-28 23:35:34 UTC (rev 154787)
+++ releases/WebKitGTK/webkit-2.2/Source/WebCore/bindings/gobject/WebKitDOMCustom.h	2013-08-28 23:36:41 UTC (rev 154788)
@@ -91,6 +91,38 @@
 WEBKIT_API void webkit_dom_html_form_element_dispatch_form_input(WebKitDOMHTMLFormElement* self);
 
 /**
+ * webkit_dom_html_element_get_id:
+ * @self: A #WebKitDOMHTMLElement
+ *
+ * This method is deprecated. Use webkit_dom_element_set_id() instead.
+ *
+ * Returns:
+ *
+**/
+WEBKIT_API gchar* webkit_dom_html_element_get_id(WebKitDOMHTMLElement* self);
+
+/**
+ * webkit_dom_html_element_set_id:
+ * @self: A #WebKitDOMHTMLElement
+ * @value: A #gchar
+ *
+ * This method is deprecated. Use webkit_dom_element_set_id() instead.
+ *
+ * Returns:
+ *
+**/
+WEBKIT_API void webkit_dom_html_element_set_id(WebKitDOMHTMLElement* self, const gchar* value);
+
+/**
+ * webkit_dom_html_element_get_title:
+ * @self: A #WebKitDOMHTMLElement
+ *
+ * Returns:
+ *
+**/
+WEBKIT_API gchar* webkit_dom_html_element_get_title(WebKitDOMHTMLElement* self);
+
+/**
  * webkit_dom_webkit_named_flow_get_overflow:
  * @flow: A #WebKitDOMWebKitNamedFlow
  *






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


[webkit-changes] [154787] trunk

2013-08-28 Thread kov
Title: [154787] trunk








Revision 154787
Author k...@webkit.org
Date 2013-08-28 16:35:34 -0700 (Wed, 28 Aug 2013)


Log Message
[GTK] Enable maintainer mode configure switch
https://bugs.webkit.org/show_bug.cgi?id=120424

Reviewed by Martin Robinson.

The maintainer mode feature is used by ostree and other automated builders to ensure no autotools
regeneration will happen for a regular tarball build; ostree builders, for instance, are very
conservative with toolchain upgrades, and are still using aclocal 1.12. WebKit's latest tarball
(2.1.90) for some reason tries to regenerate build files, and the build fails because it can't find
the version of aclocal that was used for generating the tarball (1.13).

* configure.ac: enable maintainer mode feature.

Modified Paths

trunk/ChangeLog
trunk/configure.ac




Diff

Modified: trunk/ChangeLog (154786 => 154787)

--- trunk/ChangeLog	2013-08-28 23:34:43 UTC (rev 154786)
+++ trunk/ChangeLog	2013-08-28 23:35:34 UTC (rev 154787)
@@ -1,3 +1,18 @@
+2013-08-28  Gustavo Noronha Silva  
+
+[GTK] Enable maintainer mode configure switch
+https://bugs.webkit.org/show_bug.cgi?id=120424
+
+Reviewed by Martin Robinson.
+
+The maintainer mode feature is used by ostree and other automated builders to ensure no autotools
+regeneration will happen for a regular tarball build; ostree builders, for instance, are very
+conservative with toolchain upgrades, and are still using aclocal 1.12. WebKit's latest tarball
+(2.1.90) for some reason tries to regenerate build files, and the build fails because it can't find
+the version of aclocal that was used for generating the tarball (1.13).
+
+* configure.ac: enable maintainer mode feature.
+
 2013-08-28  Zan Dobersek  
 
 [GTK] Add support for building JSC with FTL JIT enabled


Modified: trunk/configure.ac (154786 => 154787)

--- trunk/configure.ac	2013-08-28 23:34:43 UTC (rev 154786)
+++ trunk/configure.ac	2013-08-28 23:35:34 UTC (rev 154787)
@@ -32,6 +32,7 @@
 
 # We would put AM_INIT_AUTOMAKE into SetupAutomake.m4, but seems to cause autoconf errors.
 AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz no-dist-gzip tar-ustar])
+AM_MAINTAINER_MODE([enable])
 m4_include([Source/autotools/SetupAutomake.m4])
 
 ##






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


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

2013-08-28 Thread kov
Title: [154786] trunk/Source/WebCore








Revision 154786
Author k...@webkit.org
Date 2013-08-28 16:34:43 -0700 (Wed, 28 Aug 2013)


Log Message
[GTK] HTMLElement lost setID and getID - need to add compatibility symbols
https://bugs.webkit.org/show_bug.cgi?id=120440

Reviewed by Martin Robinson.

No tests, just adding compatibility symbols.

setID and getID were removed, and the parent class (Element) ones should be used instead.
We need to keep our ABI compatible, though, so add compatibility symbols.

* bindings/gobject/WebKitDOMCustom.cpp:
(webkit_dom_html_element_get_id):
(webkit_dom_html_element_set_id):
* bindings/gobject/WebKitDOMCustom.h:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp
trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (154785 => 154786)

--- trunk/Source/WebCore/ChangeLog	2013-08-28 22:52:53 UTC (rev 154785)
+++ trunk/Source/WebCore/ChangeLog	2013-08-28 23:34:43 UTC (rev 154786)
@@ -1,3 +1,20 @@
+2013-08-28  Gustavo Noronha Silva  
+
+[GTK] HTMLElement lost setID and getID - need to add compatibility symbols
+https://bugs.webkit.org/show_bug.cgi?id=120440
+
+Reviewed by Martin Robinson.
+
+No tests, just adding compatibility symbols.
+
+setID and getID were removed, and the parent class (Element) ones should be used instead.
+We need to keep our ABI compatible, though, so add compatibility symbols.
+
+* bindings/gobject/WebKitDOMCustom.cpp:
+(webkit_dom_html_element_get_id):
+(webkit_dom_html_element_set_id):
+* bindings/gobject/WebKitDOMCustom.h:
+
 2013-08-28  Simon Fraser  
 
 Fix compositing layers in columns


Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp (154785 => 154786)

--- trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp	2013-08-28 22:52:53 UTC (rev 154785)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp	2013-08-28 23:34:43 UTC (rev 154786)
@@ -64,6 +64,18 @@
 webkit_dom_element_set_class_name(WEBKIT_DOM_ELEMENT(element), value);
 }
 
+gchar* webkit_dom_html_element_get_id(WebKitDOMHTMLElement* element)
+{
+g_warning("The get_id method on WebKitDOMHTMLElement is deprecated. Use the one in WebKitDOMElement instead.");
+return webkit_dom_element_get_id(WEBKIT_DOM_ELEMENT(element));
+}
+
+void webkit_dom_html_element_set_id(WebKitDOMHTMLElement* element, const gchar* value)
+{
+g_warning("The set_id method on WebKitDOMHTMLElement is deprecated. Use the one in WebKitDOMElement instead.");
+webkit_dom_element_set_id(WEBKIT_DOM_ELEMENT(element), value);
+}
+
 gboolean webkit_dom_webkit_named_flow_get_overflow(WebKitDOMWebKitNamedFlow* flow)
 {
 g_warning("The WebKitDOMWebKitNamedFlow::overflow property has been renamed to WebKitDOMWebKitNamedFlow::overset. Please update your code to use the new name.");


Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h (154785 => 154786)

--- trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h	2013-08-28 22:52:53 UTC (rev 154785)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h	2013-08-28 23:34:43 UTC (rev 154786)
@@ -91,6 +91,38 @@
 WEBKIT_API void webkit_dom_html_form_element_dispatch_form_input(WebKitDOMHTMLFormElement* self);
 
 /**
+ * webkit_dom_html_element_get_id:
+ * @self: A #WebKitDOMHTMLElement
+ *
+ * This method is deprecated. Use webkit_dom_element_set_id() instead.
+ *
+ * Returns:
+ *
+**/
+WEBKIT_API gchar* webkit_dom_html_element_get_id(WebKitDOMHTMLElement* self);
+
+/**
+ * webkit_dom_html_element_set_id:
+ * @self: A #WebKitDOMHTMLElement
+ * @value: A #gchar
+ *
+ * This method is deprecated. Use webkit_dom_element_set_id() instead.
+ *
+ * Returns:
+ *
+**/
+WEBKIT_API void webkit_dom_html_element_set_id(WebKitDOMHTMLElement* self, const gchar* value);
+
+/**
+ * webkit_dom_html_element_get_title:
+ * @self: A #WebKitDOMHTMLElement
+ *
+ * Returns:
+ *
+**/
+WEBKIT_API gchar* webkit_dom_html_element_get_title(WebKitDOMHTMLElement* self);
+
+/**
  * webkit_dom_webkit_named_flow_get_overflow:
  * @flow: A #WebKitDOMWebKitNamedFlow
  *






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


[webkit-changes] [154328] trunk

2013-08-20 Thread kov
Title: [154328] trunk








Revision 154328
Author k...@webkit.org
Date 2013-08-20 08:52:27 -0700 (Tue, 20 Aug 2013)


Log Message
 [GTK] Add stubs for APIs that went missing in the DOM bindings

Reviewed by Martin Robinson.

Source/WebCore:

No new tests, these are just stubs for the DOM bindings API.

* bindings/gobject/WebKitDOMCustom.cpp:
(webkit_dom_bar_info_get_property):
(webkit_dom_bar_info_class_init):
(webkit_dom_bar_info_init):
(webkit_dom_bar_info_get_visible):
(webkit_dom_console_get_memory):
(webkit_dom_css_style_declaration_get_property_css_value):
(webkit_dom_document_get_webkit_hidden):
(webkit_dom_document_get_webkit_visibility_state):
(webkit_dom_html_document_open):
(webkit_dom_html_element_set_item_id):
(webkit_dom_html_element_get_item_id):
(webkit_dom_html_element_get_item_ref):
(webkit_dom_html_element_get_item_prop):
(webkit_dom_html_element_set_item_scope):
(webkit_dom_html_element_get_item_scope):
(webkit_dom_html_element_get_item_type):
(webkit_dom_html_properties_collection_get_property):
(webkit_dom_html_properties_collection_class_init):
(webkit_dom_html_properties_collection_init):
(webkit_dom_html_properties_collection_item):
(webkit_dom_html_properties_collection_named_item):
(webkit_dom_html_properties_collection_get_length):
(webkit_dom_html_properties_collection_get_names):
(webkit_dom_node_get_attributes):
(webkit_dom_node_has_attributes):
(webkit_dom_memory_info_get_property):
(webkit_dom_memory_info_class_init):
(webkit_dom_memory_info_init):
(webkit_dom_memory_info_get_total_js_heap_size):
(webkit_dom_memory_info_get_used_js_heap_size):
(webkit_dom_memory_info_get_js_heap_size_limit):
(webkit_dom_micro_data_item_value_class_init):
(webkit_dom_micro_data_item_value_init):
(webkit_dom_performance_get_memory):
(webkit_dom_property_node_list_get_property):
(webkit_dom_property_node_list_class_init):
(webkit_dom_property_node_list_init):
(webkit_dom_property_node_list_item):
(webkit_dom_property_node_list_get_length):
* bindings/gobject/WebKitDOMCustom.h:

Tools:

* Scripts/webkitpy/style/checker.py: add the bindings custom implementation files to be exempt
from naming/enum_casing rules, since it needs to provide GObject-style APIs.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp
trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.h
trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitpy/style/checker.py




Diff

Modified: trunk/Source/WebCore/ChangeLog (154327 => 154328)

--- trunk/Source/WebCore/ChangeLog	2013-08-20 15:27:41 UTC (rev 154327)
+++ trunk/Source/WebCore/ChangeLog	2013-08-20 15:52:27 UTC (rev 154328)
@@ -1,3 +1,53 @@
+2013-08-19  Gustavo Noronha Silva  
+
+ [GTK] Add stubs for APIs that went missing in the DOM bindings
+
+Reviewed by Martin Robinson.
+
+No new tests, these are just stubs for the DOM bindings API.
+
+* bindings/gobject/WebKitDOMCustom.cpp:
+(webkit_dom_bar_info_get_property):
+(webkit_dom_bar_info_class_init):
+(webkit_dom_bar_info_init):
+(webkit_dom_bar_info_get_visible):
+(webkit_dom_console_get_memory):
+(webkit_dom_css_style_declaration_get_property_css_value):
+(webkit_dom_document_get_webkit_hidden):
+(webkit_dom_document_get_webkit_visibility_state):
+(webkit_dom_html_document_open):
+(webkit_dom_html_element_set_item_id):
+(webkit_dom_html_element_get_item_id):
+(webkit_dom_html_element_get_item_ref):
+(webkit_dom_html_element_get_item_prop):
+(webkit_dom_html_element_set_item_scope):
+(webkit_dom_html_element_get_item_scope):
+(webkit_dom_html_element_get_item_type):
+(webkit_dom_html_properties_collection_get_property):
+(webkit_dom_html_properties_collection_class_init):
+(webkit_dom_html_properties_collection_init):
+(webkit_dom_html_properties_collection_item):
+(webkit_dom_html_properties_collection_named_item):
+(webkit_dom_html_properties_collection_get_length):
+(webkit_dom_html_properties_collection_get_names):
+(webkit_dom_node_get_attributes):
+(webkit_dom_node_has_attributes):
+(webkit_dom_memory_info_get_property):
+(webkit_dom_memory_info_class_init):
+(webkit_dom_memory_info_init):
+(webkit_dom_memory_info_get_total_js_heap_size):
+(webkit_dom_memory_info_get_used_js_heap_size):
+(webkit_dom_memory_info_get_js_heap_size_limit):
+(webkit_dom_micro_data_item_value_class_init):
+(webkit_dom_micro_data_item_value_init):
+(webkit_dom_performance_get_memory):
+(webkit_dom_property_node_list_get_property):
+(webkit_dom_property_node_list_class_init):
+(webkit_dom_property_node_list_init):
+(webkit_dom_property_node_list_item):
+(webkit_dom_property_node_list_get_length):
+* bindings/gobject/WebKitDOMCustom.h:
+
 2013-08-2

[webkit-changes] [154060] releases/WebKitGTK/webkit-2.0/Source/WebKit2

2013-08-14 Thread kov
Title: [154060] releases/WebKitGTK/webkit-2.0/Source/WebKit2








Revision 154060
Author k...@webkit.org
Date 2013-08-14 11:36:43 -0700 (Wed, 14 Aug 2013)


Log Message
Unreviewed build fix.

Patch by Gustavo Noronha Silva  on 2013-08-14

* GNUmakefile.am: link gamepad libs onto the plugin process,
our dearest friend when it comes to linking and unresolved
symbols issues.

Modified Paths

releases/WebKitGTK/webkit-2.0/Source/WebKit2/ChangeLog
releases/WebKitGTK/webkit-2.0/Source/WebKit2/GNUmakefile.am




Diff

Modified: releases/WebKitGTK/webkit-2.0/Source/WebKit2/ChangeLog (154059 => 154060)

--- releases/WebKitGTK/webkit-2.0/Source/WebKit2/ChangeLog	2013-08-14 18:36:20 UTC (rev 154059)
+++ releases/WebKitGTK/webkit-2.0/Source/WebKit2/ChangeLog	2013-08-14 18:36:43 UTC (rev 154060)
@@ -1,3 +1,11 @@
+2013-08-14  Gustavo Noronha Silva  
+
+Unreviewed build fix.
+
+* GNUmakefile.am: link gamepad libs onto the plugin process,
+our dearest friend when it comes to linking and unresolved
+symbols issues.
+
 2013-07-02  Zan Dobersek  
 
 [WK2] Invalidate FontCache before purging MemoryCache upon WebProcess termination/closure


Modified: releases/WebKitGTK/webkit-2.0/Source/WebKit2/GNUmakefile.am (154059 => 154060)

--- releases/WebKitGTK/webkit-2.0/Source/WebKit2/GNUmakefile.am	2013-08-14 18:36:20 UTC (rev 154059)
+++ releases/WebKitGTK/webkit-2.0/Source/WebKit2/GNUmakefile.am	2013-08-14 18:36:43 UTC (rev 154060)
@@ -612,6 +612,7 @@
 	$(FREETYPE_LIBS) \
 	$(GEOCLUE_LIBS) \
 	$(GLIB_LIBS) \
+	$(GAMEPAD_LIBS) \
 	$(GSTREAMER_LIBS) \
 	$(GTK2_LIBS) \
 	$(JPEG_LIBS) \






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


[webkit-changes] [154059] releases/WebKitGTK/webkit-2.0/Tools

2013-08-14 Thread kov
Title: [154059] releases/WebKitGTK/webkit-2.0/Tools








Revision 154059
Author k...@webkit.org
Date 2013-08-14 11:36:20 -0700 (Wed, 14 Aug 2013)


Log Message
Merge 152629 - [GTK] Increase the JHBuild version of GStreamer to 1.0.7
https://bugs.webkit.org/show_bug.cgi?id=115166

Patch by Xabier Rodriguez Calvar  on 2013-07-15
Reviewed by Philippe Normand.

* gtk/jhbuild.modules: Bumping GStreamer version up to 1.0.8.

Modified Paths

releases/WebKitGTK/webkit-2.0/Tools/ChangeLog
releases/WebKitGTK/webkit-2.0/Tools/gtk/jhbuild.modules




Diff

Modified: releases/WebKitGTK/webkit-2.0/Tools/ChangeLog (154058 => 154059)

--- releases/WebKitGTK/webkit-2.0/Tools/ChangeLog	2013-08-14 17:44:11 UTC (rev 154058)
+++ releases/WebKitGTK/webkit-2.0/Tools/ChangeLog	2013-08-14 18:36:20 UTC (rev 154059)
@@ -1,3 +1,12 @@
+2013-07-15  Xabier Rodriguez Calvar  
+
+[GTK] Increase the JHBuild version of GStreamer to 1.0.7
+https://bugs.webkit.org/show_bug.cgi?id=115166
+
+Reviewed by Philippe Normand.
+
+* gtk/jhbuild.modules: Bumping GStreamer version up to 1.0.8.
+
 2013-07-05  Xabier Rodriguez Calvar  
 
 [GTK] WebKit2 test TestWebKitFaviconDatabase times out with recent glib


Modified: releases/WebKitGTK/webkit-2.0/Tools/gtk/jhbuild.modules (154058 => 154059)

--- releases/WebKitGTK/webkit-2.0/Tools/gtk/jhbuild.modules	2013-08-14 17:44:11 UTC (rev 154058)
+++ releases/WebKitGTK/webkit-2.0/Tools/gtk/jhbuild.modules	2013-08-14 18:36:20 UTC (rev 154059)
@@ -260,35 +260,35 @@
   
 
   
-
+
   
 
   
 
   
 
-
+
   
 
   
 
   
 
-
+
   
 
   
 
   
 
-
+
   
 
   
 
   
 
-
+
   
 
 






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


[webkit-changes] [154056] releases/WebKitGTK/webkit-2.0/Source/WTF

2013-08-14 Thread kov
Title: [154056] releases/WebKitGTK/webkit-2.0/Source/WTF








Revision 154056
Author k...@webkit.org
Date 2013-08-14 10:25:20 -0700 (Wed, 14 Aug 2013)


Log Message
Merge 144174 - Bug in atomicIncrement implementation for MIPS GCC
https://bugs.webkit.org/show_bug.cgi?id=110969

Patch by Balazs Kilvady  on 2013-02-27
Reviewed by Csaba Osztrogonác.

Fix of __sync_[add|sub]_and_fetch_8 for GCC patch.

* wtf/Atomics.cpp:

Modified Paths

releases/WebKitGTK/webkit-2.0/Source/WTF/ChangeLog
releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/Atomics.cpp




Diff

Modified: releases/WebKitGTK/webkit-2.0/Source/WTF/ChangeLog (154055 => 154056)

--- releases/WebKitGTK/webkit-2.0/Source/WTF/ChangeLog	2013-08-14 17:24:59 UTC (rev 154055)
+++ releases/WebKitGTK/webkit-2.0/Source/WTF/ChangeLog	2013-08-14 17:25:20 UTC (rev 154056)
@@ -1,3 +1,14 @@
+2013-02-27  Balazs Kilvady  
+
+Bug in atomicIncrement implementation for MIPS GCC
+https://bugs.webkit.org/show_bug.cgi?id=110969
+
+Reviewed by Csaba Osztrogonác.
+
+Fix of __sync_[add|sub]_and_fetch_8 for GCC patch.
+
+* wtf/Atomics.cpp:
+
 2013-02-26  Balazs Kilvady  
 
 Fix the atomicIncrement implementation for MIPS GCC


Modified: releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/Atomics.cpp (154055 => 154056)

--- releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/Atomics.cpp	2013-08-14 17:24:59 UTC (rev 154055)
+++ releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/Atomics.cpp	2013-08-14 17:25:20 UTC (rev 154056)
@@ -57,6 +57,7 @@
  */
 
 #include "config.h"
+#include "Atomics.h"
 
 // Some architectures, like MIPS32, don't have GCC implementation for builtin __sync_* functions
 // with 64 bits variable size. Official GCC answer for the problem: If a target doesn't support
@@ -66,8 +67,6 @@
 // our own implementation.
 #if COMPILER(GCC) && !defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8) && USE(LOCKFREE_THREADSAFEREFCOUNTED) && USE(PTHREADS)
 
-#include "Atomics.h"
-
 #include "ThreadingPrimitives.h"
 
 namespace WTF {






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


[webkit-changes] [154055] releases/WebKitGTK/webkit-2.0/Source/WTF

2013-08-14 Thread kov
Title: [154055] releases/WebKitGTK/webkit-2.0/Source/WTF








Revision 154055
Author k...@webkit.org
Date 2013-08-14 10:24:59 -0700 (Wed, 14 Aug 2013)


Log Message
Merge 144077 - Fix the atomicIncrement implementation for MIPS GCC
https://bugs.webkit.org/show_bug.cgi?id=106739

Patch by Balazs Kilvady  on 2013-02-26
Reviewed by Oliver Hunt.

Implementation of missing __sync_[add|sub]_and_fetch_8 functions.

Some architectures, like MIPS32, don't have GCC implementation for
builtin __sync_* functions with 64 bits variable size. GCC answer
for the problem: If a target doesn't support atomic operations on
certain variable sizes, you are out of luck with atomicity in that
case (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56296). GCC >= 4.8
will support __atomic_* builtin functions for this purpose for all
the GCC targets, but for current compilers we have to include our
own implementation.

* GNUmakefile.list.am:
* WTF.pro:
* wtf/Atomics.cpp: Added.
(WTF):
(WTF::getSwapLock):
(WTF::atomicStep):
* wtf/CMakeLists.txt:

Modified Paths

releases/WebKitGTK/webkit-2.0/Source/WTF/ChangeLog
releases/WebKitGTK/webkit-2.0/Source/WTF/GNUmakefile.list.am
releases/WebKitGTK/webkit-2.0/Source/WTF/WTF.pro
releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/CMakeLists.txt


Added Paths

releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/Atomics.cpp




Diff

Modified: releases/WebKitGTK/webkit-2.0/Source/WTF/ChangeLog (154054 => 154055)

--- releases/WebKitGTK/webkit-2.0/Source/WTF/ChangeLog	2013-08-14 17:08:36 UTC (rev 154054)
+++ releases/WebKitGTK/webkit-2.0/Source/WTF/ChangeLog	2013-08-14 17:24:59 UTC (rev 154055)
@@ -1,3 +1,29 @@
+2013-02-26  Balazs Kilvady  
+
+Fix the atomicIncrement implementation for MIPS GCC
+https://bugs.webkit.org/show_bug.cgi?id=106739
+
+Reviewed by Oliver Hunt.
+
+Implementation of missing __sync_[add|sub]_and_fetch_8 functions.
+
+Some architectures, like MIPS32, don't have GCC implementation for
+builtin __sync_* functions with 64 bits variable size. GCC answer
+for the problem: If a target doesn't support atomic operations on
+certain variable sizes, you are out of luck with atomicity in that
+case (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56296). GCC >= 4.8
+will support __atomic_* builtin functions for this purpose for all
+the GCC targets, but for current compilers we have to include our
+own implementation.
+
+* GNUmakefile.list.am:
+* WTF.pro:
+* wtf/Atomics.cpp: Added.
+(WTF):
+(WTF::getSwapLock):
+(WTF::atomicStep):
+* wtf/CMakeLists.txt:
+
 2013-03-08  Gabor Rapcsanyi  
 
 Cache flush problem on ARMv7 JSC


Modified: releases/WebKitGTK/webkit-2.0/Source/WTF/GNUmakefile.list.am (154054 => 154055)

--- releases/WebKitGTK/webkit-2.0/Source/WTF/GNUmakefile.list.am	2013-08-14 17:08:36 UTC (rev 154054)
+++ releases/WebKitGTK/webkit-2.0/Source/WTF/GNUmakefile.list.am	2013-08-14 17:24:59 UTC (rev 154055)
@@ -11,6 +11,7 @@
 Source/WTF/wtf/ArrayBufferView.h \
 Source/WTF/wtf/Assertions.cpp \
 Source/WTF/wtf/Assertions.h \
+Source/WTF/wtf/Atomics.cpp \
 Source/WTF/wtf/Atomics.h \
 Source/WTF/wtf/BitArray.h \
 Source/WTF/wtf/BitVector.cpp \


Modified: releases/WebKitGTK/webkit-2.0/Source/WTF/WTF.pro (154054 => 154055)

--- releases/WebKitGTK/webkit-2.0/Source/WTF/WTF.pro	2013-08-14 17:08:36 UTC (rev 154054)
+++ releases/WebKitGTK/webkit-2.0/Source/WTF/WTF.pro	2013-08-14 17:24:59 UTC (rev 154055)
@@ -197,6 +197,7 @@
 ArrayBuffer.cpp \
 ArrayBufferView.cpp \
 Assertions.cpp \
+Atomics.cpp \
 BitVector.cpp \
 CryptographicallyRandomNumber.cpp \
 CurrentTime.cpp \


Added: releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/Atomics.cpp (0 => 154055)

--- releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/Atomics.cpp	(rev 0)
+++ releases/WebKitGTK/webkit-2.0/Source/WTF/wtf/Atomics.cpp	2013-08-14 17:24:59 UTC (rev 154055)
@@ -0,0 +1,111 @@
+/*
+ * Copyright (C) 2007, 2008, 2010, 2012 Apple Inc. All rights reserved.
+ * Copyright (C) 2007 Justin Haygood (jhayg...@reaktix.com)
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1.  Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer. 
+ * 2.  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. 
+ * 3.  Neither the name of Apple Computer, Inc. ("Apple") 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 APPLE AND ITS CONTRIBUTORS "AS 

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

2013-08-10 Thread kov
Title: [153921] trunk/Source/WebCore








Revision 153921
Author k...@webkit.org
Date 2013-08-10 08:45:23 -0700 (Sat, 10 Aug 2013)


Log Message
[GObject] Wrap KeyboardEvent
https://bugs.webkit.org/show_bug.cgi?id=119651

Reviewed by Christophe Dumez.

This exposes KeyboardEvent to our GObject API. It is required for handling
keyboard events, such as keydown, keypress, and so on.

* bindings/gobject/GNUmakefile.am:
* bindings/gobject/WebKitDOMPrivate.cpp:
(WebKit::wrap): make sure we create a WebKitDOMKeyboardEvent for a DOM event that
is a KeyboardEvent.
* bindings/scripts/CodeGeneratorGObject.pm:
(GetBaseClass): make WebKitDOMEvent be WebKitDOMKeyboardEvent's parent, like we do
for WebKitDOMMouseEvent.
* dom/KeyboardEvent.idl: generate a single initialization method.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/bindings/gobject/GNUmakefile.am
trunk/Source/WebCore/bindings/gobject/WebKitDOMPrivate.cpp
trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm
trunk/Source/WebCore/dom/KeyboardEvent.idl




Diff

Modified: trunk/Source/WebCore/ChangeLog (153920 => 153921)

--- trunk/Source/WebCore/ChangeLog	2013-08-10 03:29:16 UTC (rev 153920)
+++ trunk/Source/WebCore/ChangeLog	2013-08-10 15:45:23 UTC (rev 153921)
@@ -1,3 +1,22 @@
+2013-08-09  Gustavo Noronha Silva  
+
+[GObject] Wrap KeyboardEvent
+https://bugs.webkit.org/show_bug.cgi?id=119651
+
+Reviewed by Christophe Dumez.
+
+This exposes KeyboardEvent to our GObject API. It is required for handling
+keyboard events, such as keydown, keypress, and so on.
+
+* bindings/gobject/GNUmakefile.am:
+* bindings/gobject/WebKitDOMPrivate.cpp:
+(WebKit::wrap): make sure we create a WebKitDOMKeyboardEvent for a DOM event that
+is a KeyboardEvent.
+* bindings/scripts/CodeGeneratorGObject.pm:
+(GetBaseClass): make WebKitDOMEvent be WebKitDOMKeyboardEvent's parent, like we do
+for WebKitDOMMouseEvent.
+* dom/KeyboardEvent.idl: generate a single initialization method.
+
 2013-08-09  Jer Noble  
 
 Crash in com.apple.WebKit.WebContent at com.apple.MediaToolbox.


Modified: trunk/Source/WebCore/bindings/gobject/GNUmakefile.am (153920 => 153921)

--- trunk/Source/WebCore/bindings/gobject/GNUmakefile.am	2013-08-10 03:29:16 UTC (rev 153920)
+++ trunk/Source/WebCore/bindings/gobject/GNUmakefile.am	2013-08-10 15:45:23 UTC (rev 153921)
@@ -203,6 +203,8 @@
 	DerivedSources/webkitdom/WebKitDOMHTMLTitleElementPrivate.h \
 	DerivedSources/webkitdom/WebKitDOMHTMLUListElement.cpp \
 	DerivedSources/webkitdom/WebKitDOMHTMLUListElementPrivate.h \
+	DerivedSources/webkitdom/WebKitDOMKeyboardEvent.cpp \
+	DerivedSources/webkitdom/WebKitDOMKeyboardEventPrivate.h \
 	DerivedSources/webkitdom/WebKitDOMLocation.cpp \
 	DerivedSources/webkitdom/WebKitDOMLocationPrivate.h \
 	DerivedSources/webkitdom/WebKitDOMMediaError.cpp \
@@ -305,6 +307,7 @@
 	DerivedSources/webkitdom/WebKitDOMElement.h \
 	DerivedSources/webkitdom/WebKitDOMEntityReference.h \
 	DerivedSources/webkitdom/WebKitDOMEvent.h \
+	DerivedSources/webkitdom/WebKitDOMKeyboardEvent.h \
 	DerivedSources/webkitdom/WebKitDOMMessagePort.h \
 	DerivedSources/webkitdom/WebKitDOMMouseEvent.h \
 	DerivedSources/webkitdom/WebKitDOMNamedNodeMap.h \


Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMPrivate.cpp (153920 => 153921)

--- trunk/Source/WebCore/bindings/gobject/WebKitDOMPrivate.cpp	2013-08-10 03:29:16 UTC (rev 153920)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMPrivate.cpp	2013-08-10 15:45:23 UTC (rev 153921)
@@ -33,6 +33,7 @@
 #include "File.h"
 #include "HTMLElement.h"
 #include "HTMLNames.h"
+#include "KeyboardEvent.h"
 #include "MouseEvent.h"
 #include "StyleSheet.h"
 #include "UIEvent.h"
@@ -54,6 +55,7 @@
 #include "WebKitDOMHTMLDocumentPrivate.h"
 #include "WebKitDOMHTMLOptionsCollectionPrivate.h"
 #include "WebKitDOMHTMLPrivate.h"
+#include "WebKitDOMKeyboardEventPrivate.h"
 #include "WebKitDOMMouseEventPrivate.h"
 #include "WebKitDOMNodePrivate.h"
 #include "WebKitDOMProcessingInstructionPrivate.h"
@@ -112,6 +114,9 @@
 if (event->isMouseEvent())
 return WEBKIT_DOM_EVENT(wrapMouseEvent(static_cast(event)));
 
+if (event->isKeyboardEvent())
+return WEBKIT_DOM_EVENT(wrapKeyboardEvent(static_cast(event)));
+
 if (event->isUIEvent())
 return WEBKIT_DOM_EVENT(wrapUIEvent(static_cast(event)));
 


Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm (153920 => 153921)

--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm	2013-08-10 03:29:16 UTC (rev 153920)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm	2013-08-10 15:45:23 UTC (rev 153921)
@@ -109,9 +109,10 @@
 sub GetBaseClass
 {
 $parent = shift;
+$interface = shift;
 
 return $parent if $parent eq "Object" or IsBaseType($parent);
-return "Event" if $parent eq "UIEvent" or $parent eq "MouseEvent";
+return "Event" if $co

[webkit-changes] [153908] trunk/Tools

2013-08-09 Thread kov
Title: [153908] trunk/Tools








Revision 153908
Author k...@webkit.org
Date 2013-08-09 14:12:43 -0700 (Fri, 09 Aug 2013)


Log Message
[GTK] Misses mod_ssl and php in the list of packages required for tests for yum
https://bugs.webkit.org/show_bug.cgi?id=115751

Patch by Gustavo Noronha Silva  on 2013-08-09
Reviewed by Martin Robinson.

* gtk/install-dependencies: add mod_ssl and php to the packages installed for tests
with yum.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/gtk/install-dependencies




Diff

Modified: trunk/Tools/ChangeLog (153907 => 153908)

--- trunk/Tools/ChangeLog	2013-08-09 19:58:51 UTC (rev 153907)
+++ trunk/Tools/ChangeLog	2013-08-09 21:12:43 UTC (rev 153908)
@@ -1,3 +1,13 @@
+2013-08-09  Gustavo Noronha Silva  
+
+[GTK] Misses mod_ssl and php in the list of packages required for tests for yum
+https://bugs.webkit.org/show_bug.cgi?id=115751
+
+Reviewed by Martin Robinson.
+
+* gtk/install-dependencies: add mod_ssl and php to the packages installed for tests
+with yum.
+
 2013-08-09  Beth Dakin  
 
 AX: Not able to use arrow keys to read text in a WK2 app


Modified: trunk/Tools/gtk/install-dependencies (153907 => 153908)

--- trunk/Tools/gtk/install-dependencies	2013-08-09 19:58:51 UTC (rev 153907)
+++ trunk/Tools/gtk/install-dependencies	2013-08-09 21:12:43 UTC (rev 153908)
@@ -158,8 +158,10 @@
 # These are dependencies necessary for running tests.
 yum install \
 httpd \
+mod_bw \
+mod_ssl \
+php \
 curl \
-mod_bw \
 libgpg-error-devel \
 pulseaudio-utils \
 pygobject3-base \






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


[webkit-changes] [153900] releases/WebKitGTK/webkit-2.0/Source/WebCore

2013-08-09 Thread kov
Title: [153900] releases/WebKitGTK/webkit-2.0/Source/WebCore








Revision 153900
Author k...@webkit.org
Date 2013-08-09 10:25:50 -0700 (Fri, 09 Aug 2013)


Log Message
Merge 153749 - webkit-gtk fails to build with bison-3.0
https://bugs.webkit.org/show_bug.cgi?id=119373

Reviewed by Gustavo Noronha Silva.

Source/ThirdParty/ANGLE:

* GNUmakefile.am: Stop relying on generated glslang_tab.(cpp|h) and glslang.cpp sources as Bison 3.0
produces non-compilable source code. Instead, compile these pregenerated files as they're included in
the tree. Originally, the ANGLE source tree provides these files as generated by Bison 2.7, but they're
at the moment regenerated with Bison 2.3 when the third-party ANGLE source is being updated.

Source/WebCore:

* GNUmakefile.am: Remove rules for generating ANGLE's glslang source files with Bison.

Conflicts:
	Source/ThirdParty/ANGLE/GNUmakefile.am
	Source/WebCore/GNUmakefile.am

Modified Paths

releases/WebKitGTK/webkit-2.0/Source/WebCore/ChangeLog
releases/WebKitGTK/webkit-2.0/Source/WebCore/GNUmakefile.am
releases/WebKitGTK/webkit-2.0/Source/WebCore/GNUmakefile.list.am




Diff

Modified: releases/WebKitGTK/webkit-2.0/Source/WebCore/ChangeLog (153899 => 153900)

--- releases/WebKitGTK/webkit-2.0/Source/WebCore/ChangeLog	2013-08-09 17:09:42 UTC (rev 153899)
+++ releases/WebKitGTK/webkit-2.0/Source/WebCore/ChangeLog	2013-08-09 17:25:50 UTC (rev 153900)
@@ -1,3 +1,16 @@
+2013-08-06  Zan Dobersek  
+
+webkit-gtk fails to build with bison-3.0
+https://bugs.webkit.org/show_bug.cgi?id=119373
+
+Reviewed by Gustavo Noronha Silva.
+
+* GNUmakefile.am: Remove rules for generating ANGLE's glslang source files with Bison.
+Stop relying on generated glslang_tab.(cpp|h) and glslang.cpp sources as Bison 3.0
+produces non-compilable source code. Instead, compile these pregenerated files as they're included in
+the tree. Originally, the ANGLE source tree provides these files as generated by Bison 2.7, but they're
+at the moment regenerated with Bison 2.3 when the third-party ANGLE source is being updated.
+
 2013-05-03  Xabier Rodriguez Calvar  
 
 [GStreamer] GStreamer log crashes in MediaPlayerPrivateGStreamerBase because of uninitialized category


Modified: releases/WebKitGTK/webkit-2.0/Source/WebCore/GNUmakefile.am (153899 => 153900)

--- releases/WebKitGTK/webkit-2.0/Source/WebCore/GNUmakefile.am	2013-08-09 17:09:42 UTC (rev 153899)
+++ releases/WebKitGTK/webkit-2.0/Source/WebCore/GNUmakefile.am	2013-08-09 17:25:50 UTC (rev 153900)
@@ -352,14 +352,6 @@
 dist_audio_DATA = $(audio_DATA)
 endif  # END ENABLE_WEB_AUDIO
 
-# ANGLE tokenizer & parser
-DerivedSources/ANGLE/glslang.cpp: Source/ThirdParty/ANGLE/src/compiler/glslang.l
-	$(AM_V_GEN)$(FLEX) --noline --nounistd --outfile="$@" "$<"
-
-DerivedSources/ANGLE/glslang_tab.cpp: Source/ThirdParty/ANGLE/src/compiler/glslang.y
-	$(AM_V_GEN)$(BISON) --no-lines --defines="DerivedSources/ANGLE/glslang_tab.h" --skeleton=yacc.c --output="$@" $<
-DerivedSources/ANGLE/glslang_tab.h: DerivedSources/ANGLE/glslang_tab.cpp
-
 IDL_PATH := \
 $(WebCore)/Modules/filesystem \
 $(WebCore)/Modules/gamepad \


Modified: releases/WebKitGTK/webkit-2.0/Source/WebCore/GNUmakefile.list.am (153899 => 153900)

--- releases/WebKitGTK/webkit-2.0/Source/WebCore/GNUmakefile.list.am	2013-08-09 17:09:42 UTC (rev 153899)
+++ releases/WebKitGTK/webkit-2.0/Source/WebCore/GNUmakefile.list.am	2013-08-09 17:25:50 UTC (rev 153900)
@@ -6305,11 +6305,6 @@
 # 3D canvas (WebGL) support
 # ---
 if ENABLE_WEBGL
-webcore_built_sources += \
-	DerivedSources/ANGLE/glslang.cpp \
-	DerivedSources/ANGLE/glslang_tab.cpp \
-	DerivedSources/ANGLE/glslang_tab.h
-
 webcore_sources += \
 	Source/ThirdParty/ANGLE/include/EGL/egl.h \
 	Source/ThirdParty/ANGLE/include/EGL/eglplatform.h \
@@ -6346,6 +6341,9 @@
 	Source/ThirdParty/ANGLE/src/compiler/ForLoopUnroll.cpp \
 	Source/ThirdParty/ANGLE/src/compiler/ForLoopUnroll.h \
 	Source/ThirdParty/ANGLE/src/compiler/glslang.h \
+	Source/ThirdParty/ANGLE/src/compiler/glslang_lex.cpp \
+	Source/ThirdParty/ANGLE/src/compiler/glslang_tab.cpp \
+	Source/ThirdParty/ANGLE/src/compiler/glslang_tab.h \
 	Source/ThirdParty/ANGLE/src/compiler/HashNames.h \
 	Source/ThirdParty/ANGLE/src/compiler/InfoSink.cpp \
 	Source/ThirdParty/ANGLE/src/compiler/InfoSink.h \






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


[webkit-changes] [150275] trunk

2013-05-17 Thread kov
Title: [150275] trunk








Revision 150275
Author k...@webkit.org
Date 2013-05-17 11:02:32 -0700 (Fri, 17 May 2013)


Log Message
Unreviewed. Skip webgl and transforms/3d tests again, until we find out why they do
not run in the release bot.

Patch by Gustavo Noronha Silva  on 2013-05-17

* platform/gtk/TestExpectations:

Tools

* Tools/DumpRenderTree/gtk/DumpRenderTree.cpp: Disable accelerated compositing until we figure
out why it does not work properly in the 64 bits release bot.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations
trunk/Tools/ChangeLog
trunk/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp




Diff

Modified: trunk/LayoutTests/ChangeLog (150274 => 150275)

--- trunk/LayoutTests/ChangeLog	2013-05-17 17:43:14 UTC (rev 150274)
+++ trunk/LayoutTests/ChangeLog	2013-05-17 18:02:32 UTC (rev 150275)
@@ -1,3 +1,10 @@
+2013-05-17  Gustavo Noronha Silva  
+
+Unreviewed. Skip webgl and transforms/3d tests again, until we find out why they do
+not run in the release bot.
+
+* platform/gtk/TestExpectations:
+
 2013-05-17  Frédéric Wang  
 
 Bad spacing inside MathML formulas when text-indent is specified


Modified: trunk/LayoutTests/platform/gtk/TestExpectations (150274 => 150275)

--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-05-17 17:43:14 UTC (rev 150274)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-05-17 18:02:32 UTC (rev 150275)
@@ -271,85 +271,9 @@
 webkit.org/b/71849 http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html [ Skip ]
 webkit.org/b/71849 inspector/profiler/webgl [ Skip ]
 webkit.org/b/71849 webkit.org/b/111477 inspector-protocol/layers [ Skip ]
+webkit.org/b/71849 transforms/3d [ Skip ]
+webkit.org/b/71849 webgl [ Skip ]
 
-Bug(GTK) webgl/conformance/attribs/gl-vertex-attrib-render.html [ Failure ]
-Bug(GTK) webgl/conformance/context/context-creation-and-destruction.html [ Timeout ]
-Bug(GTK) webgl/conformance/context/context-release-upon-reload.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/context/context-release-with-workers.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/context/premultiplyalpha-test.html [ Failure ]
-Bug(GTK) webgl/conformance/extensions/oes-element-index-uint.html [ Failure ]
-Bug(GTK) webgl/conformance/extensions/oes-texture-float-with-canvas.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/extensions/oes-texture-float-with-video.html [ Timeout ]
-Bug(GTK) webgl/conformance/extensions/oes-texture-float.html [ Failure ]
-Bug(GTK) webgl/conformance/extensions/oes-vertex-array-object.html [ Crash Pass ]
-Bug(GTK) webgl/conformance/glsl/functions/glsl-function-sin.html [ Failure ]
-Bug(GTK) webgl/conformance/glsl/functions/glsl-function-smoothstep-float.html [ Failure ]
-Bug(GTK) webgl/conformance/glsl/literals/float_literal.vert.html [ Failure ]
-Bug(GTK) webgl/conformance/glsl/misc/shader-uniform-packing-restrictions.html [ Timeout ]
-Bug(GTK) webgl/conformance/glsl/misc/shader-varying-packing-restrictions.html [ Failure ]
-Bug(GTK) webgl/conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html [ Failure ]
-Bug(GTK) webgl/conformance/glsl/misc/shader-with-non-reserved-words.html [ Timeout ]
-Bug(GTK) webgl/conformance/glsl/misc/shaders-with-varyings.html [ Failure ]
-Bug(GTK) webgl/conformance/misc/type-conversion-test.html [ Crash ]
-Bug(GTK) webgl/conformance/more/functions/readPixelsBadArgs.html [ Failure ]
-Bug(GTK) webgl/conformance/more/functions/texImage2DHTML.html [ Failure ]
-Bug(GTK) webgl/conformance/more/functions/texSubImage2DHTML.html [ Failure ]
-Bug(GTK) webgl/conformance/more/functions/uniformfArrayLen1.html [ Failure ]
-Bug(GTK) webgl/conformance/ogles/GL/atan/atan_001_to_008.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/atan/atan_009_to_012.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/equal/equal_001_to_008.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/exp2/exp2_001_to_008.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/functions/functions_065_to_072.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/functions/functions_073_to_080.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/log/log_001_to_008.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/log/log_009_to_012.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/log2/log2_001_to_008.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/mat/mat_001_to_008.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/mat/mat_009_to_016.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/mat/mat_017_to_024.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/mat/mat_025_to_032.html [ Timeout Pass ]
-Bug(GTK) webgl/conformance/ogles/GL/mat/mat_033_to_040.html [ Time

[webkit-changes] [150256] trunk/Source/WebKit/gtk

2013-05-17 Thread kov
Title: [150256] trunk/Source/WebKit/gtk








Revision 150256
Author k...@webkit.org
Date 2013-05-17 07:33:39 -0700 (Fri, 17 May 2013)


Log Message
Unreviewed build fix. Remove assertion that doesn't make sense anymore since the
page does not give us access to the Chrome pointer directly anymore.

Patch by Gustavo Noronha Silva  on 2013-05-17

* webkit/webkitwebview.cpp:
(WebKit::kit):

Modified Paths

trunk/Source/WebKit/gtk/ChangeLog
trunk/Source/WebKit/gtk/webkit/webkitwebview.cpp




Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (150255 => 150256)

--- trunk/Source/WebKit/gtk/ChangeLog	2013-05-17 14:05:05 UTC (rev 150255)
+++ trunk/Source/WebKit/gtk/ChangeLog	2013-05-17 14:33:39 UTC (rev 150256)
@@ -1,3 +1,11 @@
+2013-05-17  Gustavo Noronha Silva  
+
+Unreviewed build fix. Remove assertion that doesn't make sense anymore since the
+page does not give us access to the Chrome pointer directly anymore.
+
+* webkit/webkitwebview.cpp:
+(WebKit::kit):
+
 2013-05-16  Andreas Kling  
 
 Page::chrome() should return a reference.


Modified: trunk/Source/WebKit/gtk/webkit/webkitwebview.cpp (150255 => 150256)

--- trunk/Source/WebKit/gtk/webkit/webkitwebview.cpp	2013-05-17 14:05:05 UTC (rev 150255)
+++ trunk/Source/WebKit/gtk/webkit/webkitwebview.cpp	2013-05-17 14:33:39 UTC (rev 150256)
@@ -5537,7 +5537,6 @@
 if (!corePage)
 return 0;
 
-ASSERT(corePage->chrome());
 WebKit::ChromeClient* client = static_cast(corePage->chrome().client());
 return client ? static_cast(client->webView()) : 0;
 }






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


[webkit-changes] [150198] trunk/Tools

2013-05-16 Thread kov
Title: [150198] trunk/Tools








Revision 150198
Author k...@webkit.org
Date 2013-05-16 12:09:57 -0700 (Thu, 16 May 2013)


Log Message
[jhbuild] Should remove the sources directory as well when cleaning
https://bugs.webkit.org/show_bug.cgi?id=116229

Patch by Gustavo Noronha Silva  on 2013-05-16
Reviewed by Martin Robinson.

* Scripts/update-webkit-libs-jhbuild:
(cleanJhbuild): remove the Source directory as well when cleaning.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/update-webkit-libs-jhbuild




Diff

Modified: trunk/Tools/ChangeLog (150197 => 150198)

--- trunk/Tools/ChangeLog	2013-05-16 19:08:38 UTC (rev 150197)
+++ trunk/Tools/ChangeLog	2013-05-16 19:09:57 UTC (rev 150198)
@@ -1,3 +1,13 @@
+2013-05-16  Gustavo Noronha Silva  
+
+[jhbuild] Should remove the sources directory as well when cleaning
+https://bugs.webkit.org/show_bug.cgi?id=116229
+
+Reviewed by Martin Robinson.
+
+* Scripts/update-webkit-libs-jhbuild:
+(cleanJhbuild): remove the Source directory as well when cleaning.
+
 2013-05-15  Dominik Röttsches  
 
 [EFL] Remove Intel Wk2 Buildbots from Master


Modified: trunk/Tools/Scripts/update-webkit-libs-jhbuild (150197 => 150198)

--- trunk/Tools/Scripts/update-webkit-libs-jhbuild	2013-05-16 19:08:38 UTC (rev 150197)
+++ trunk/Tools/Scripts/update-webkit-libs-jhbuild	2013-05-16 19:09:57 UTC (rev 150198)
@@ -101,8 +101,6 @@
 
 sub cleanJhbuild()
 {
-runJhbuild("clean");
-
 # If the configuration changed, dependencies may have been removed.
 # Since we lack a granular way of uninstalling those we wipe out the
 # jhbuild root and start from scratch.
@@ -110,6 +108,10 @@
 if (system("rm -rf $jhbuildPath/Root") ne 0) {
 die "Cleaning jhbuild root failed!";
 }
+
+if (system("rm -rf $jhbuildPath/Source") ne 0) {
+die "Cleaning jhbuild sources failed!";
+}
 }
 
 delete $ENV{AR_FLAGS} if exists $ENV{AR_FLAGS};






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


[webkit-changes] [150185] releases/WebKitGTK/webkit-2.0

2013-05-16 Thread kov
Title: [150185] releases/WebKitGTK/webkit-2.0








Revision 150185
Author k...@webkit.org
Date 2013-05-16 10:23:50 -0700 (Thu, 16 May 2013)


Log Message
[GTK] WebAudio doesn't build in WebKitGTK+ 2.0.2
https://bugs.webkit.org/show_bug.cgi?id=116154

Patch by Alberto Garcia   on 2013-05-16
Reviewed by Gustavo Noronha Silva.

Don't override the value of ENABLE_WEB_AUDIO selected in the
configure script.

* Source/autotools/SetupWebKitFeatures.m4:

Modified Paths

releases/WebKitGTK/webkit-2.0/ChangeLog
releases/WebKitGTK/webkit-2.0/Source/autotools/SetupWebKitFeatures.m4




Diff

Modified: releases/WebKitGTK/webkit-2.0/ChangeLog (150184 => 150185)

--- releases/WebKitGTK/webkit-2.0/ChangeLog	2013-05-16 17:06:58 UTC (rev 150184)
+++ releases/WebKitGTK/webkit-2.0/ChangeLog	2013-05-16 17:23:50 UTC (rev 150185)
@@ -1,3 +1,15 @@
+2013-05-16  Alberto Garcia  
+
+[GTK] WebAudio doesn't build in WebKitGTK+ 2.0.2
+https://bugs.webkit.org/show_bug.cgi?id=116154
+
+Reviewed by Gustavo Noronha Silva.
+
+Don't override the value of ENABLE_WEB_AUDIO selected in the
+configure script.
+
+* Source/autotools/SetupWebKitFeatures.m4:
+
 2013-05-13  Carlos Garcia Campos  
 
 Unreviewed. Update NEWS and Versions.m4 for 2.0.2 release.


Modified: releases/WebKitGTK/webkit-2.0/Source/autotools/SetupWebKitFeatures.m4 (150184 => 150185)

--- releases/WebKitGTK/webkit-2.0/Source/autotools/SetupWebKitFeatures.m4	2013-05-16 17:06:58 UTC (rev 150184)
+++ releases/WebKitGTK/webkit-2.0/Source/autotools/SetupWebKitFeatures.m4	2013-05-16 17:23:50 UTC (rev 150185)
@@ -171,7 +171,6 @@
 	ENABLE_USER_TIMING=0 \
 	ENABLE_VIBRATION=0 \
 	ENABLE_VIDEO_TRACK=0 \
-	ENABLE_WEB_AUDIO=0 \
 	ENABLE_WEB_SOCKETS=1 \
 	ENABLE_WEB_TIMING=1 \
 	ENABLE_WORKERS=1 \






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


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

2013-05-08 Thread kov
Title: [149735] trunk/Source/WebCore








Revision 149735
Author k...@webkit.org
Date 2013-05-08 06:41:13 -0700 (Wed, 08 May 2013)


Log Message
[GStreamer] Does memory buffering even with preload set to none
https://bugs.webkit.org/show_bug.cgi?id=115754

Patch by Gustavo Noronha Silva  on 2013-05-08
Reviewed by Philippe Normand.

Covered by existing tests.

Revision 148840 fixed on-disk buffering being done when preload is set to none,
but memory buffering is still being done. That is because setting the state to
paused causes GStreamer to start loading the media, to gather information. Only
doing that when committing the load avoids that while maintaining the tested
behaviour unchanged.

* platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
(WebCore::MediaPlayerPrivateGStreamer::load): move setting pause state to commitLoad.
(WebCore::MediaPlayerPrivateGStreamer::commitLoad): see above.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (149734 => 149735)

--- trunk/Source/WebCore/ChangeLog	2013-05-08 13:07:05 UTC (rev 149734)
+++ trunk/Source/WebCore/ChangeLog	2013-05-08 13:41:13 UTC (rev 149735)
@@ -1,3 +1,22 @@
+2013-05-08  Gustavo Noronha Silva  
+
+[GStreamer] Does memory buffering even with preload set to none
+https://bugs.webkit.org/show_bug.cgi?id=115754
+
+Reviewed by Philippe Normand.
+
+Covered by existing tests.
+
+Revision 148840 fixed on-disk buffering being done when preload is set to none,
+but memory buffering is still being done. That is because setting the state to
+paused causes GStreamer to start loading the media, to gather information. Only
+doing that when committing the load avoids that while maintaining the tested
+behaviour unchanged.
+
+* platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
+(WebCore::MediaPlayerPrivateGStreamer::load): move setting pause state to commitLoad.
+(WebCore::MediaPlayerPrivateGStreamer::commitLoad): see above.
+
 2013-05-08  Andreas Kling  
 
 SVGStyledElement::getPresentationAttribute() does not need to be virtual.


Modified: trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp (149734 => 149735)

--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp	2013-05-08 13:07:05 UTC (rev 149734)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp	2013-05-08 13:41:13 UTC (rev 149735)
@@ -299,10 +299,6 @@
 m_player->readyStateChanged();
 m_volumeAndMuteInitialized = false;
 
-// GStreamer needs to have the pipeline set to a paused state to
-// start providing anything useful.
-gst_element_set_state(m_playBin.get(), GST_STATE_PAUSED);
-
 if (!m_delayingLoad)
 commitLoad();
 }
@@ -318,6 +314,11 @@
 {
 ASSERT(!m_delayingLoad);
 LOG_MEDIA_MESSAGE("Committing load.");
+
+// GStreamer needs to have the pipeline set to a paused state to
+// start providing anything useful.
+gst_element_set_state(m_playBin.get(), GST_STATE_PAUSED);
+
 updateStates();
 }
 






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


[webkit-changes] [149645] trunk/Tools

2013-05-06 Thread kov
Title: [149645] trunk/Tools








Revision 149645
Author k...@webkit.org
Date 2013-05-06 15:47:26 -0700 (Mon, 06 May 2013)


Log Message
[jhbuild] bump jhbuild version to take advantage of new improvements
https://bugs.webkit.org/show_bug.cgi?id=115558

Reviewed by Martin Robinson.

One of the important improvements is jhbuild no longer fetches git
repositories if they are already at the expected revision, which should
make the EWS bots more robust to git servers unavailability.

* jhbuild/jhbuild-wrapper: bump jhbuild to 496974221c3a8ac4fbbc3b0a577c71cac224130d.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/jhbuild/jhbuild-wrapper




Diff

Modified: trunk/Tools/ChangeLog (149644 => 149645)

--- trunk/Tools/ChangeLog	2013-05-06 22:33:15 UTC (rev 149644)
+++ trunk/Tools/ChangeLog	2013-05-06 22:47:26 UTC (rev 149645)
@@ -1,3 +1,16 @@
+2013-05-03  Gustavo Noronha Silva  
+
+[jhbuild] bump jhbuild version to take advantage of new improvements
+https://bugs.webkit.org/show_bug.cgi?id=115558
+
+Reviewed by Martin Robinson.
+
+One of the important improvements is jhbuild no longer fetches git
+repositories if they are already at the expected revision, which should
+make the EWS bots more robust to git servers unavailability.
+
+* jhbuild/jhbuild-wrapper: bump jhbuild to 496974221c3a8ac4fbbc3b0a577c71cac224130d.
+
 2013-05-06  Manuel Rego Casasnovas  
 
 [GTK] Add webkit_uri_scheme_request_finish_error


Modified: trunk/Tools/jhbuild/jhbuild-wrapper (149644 => 149645)

--- trunk/Tools/jhbuild/jhbuild-wrapper	2013-05-06 22:33:15 UTC (rev 149644)
+++ trunk/Tools/jhbuild/jhbuild-wrapper	2013-05-06 22:47:26 UTC (rev 149645)
@@ -23,7 +23,7 @@
 import subprocess
 import sys
 
-jhbuild_revision = 'ddb8b4e64bede55212c7590e2104daff92b72ce0'
+jhbuild_revision = '496974221c3a8ac4fbbc3b0a577c71cac224130d'
 
 dependencies_path = jhbuildutils.get_dependencies_path()
 installation_prefix = os.path.abspath(os.path.join(dependencies_path, 'Root'))






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


[webkit-changes] [148745] trunk/Tools

2013-04-19 Thread kov
Title: [148745] trunk/Tools








Revision 148745
Author k...@webkit.org
Date 2013-04-19 07:53:48 -0700 (Fri, 19 Apr 2013)


Log Message
[GTK] Make the 32 bits bot only build and run API tests
https://bugs.webkit.org/show_bug.cgi?id=113532

Reviewed by Martin Robinson.

* BuildSlaveSupport/build.webkit.org-config/config.json: make the 32 bits bot use the new BuildAndAPITest type
* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(BuildAndAPITestFactory): new factory that builds and runs API tests, only used by the GTK+ 32 bits bot at the
moment;
(BuildAndAPITestFactory.__init__): add API tests step for platforms that have it.

Modified Paths

trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json
trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg
trunk/Tools/ChangeLog




Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json (148744 => 148745)

--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json	2013-04-19 14:32:51 UTC (rev 148744)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json	2013-04-19 14:53:48 UTC (rev 148745)
@@ -148,7 +148,7 @@
   "slavenames": ["apple-windows-3", "apple-windows-4"]
 },
 {
-  "name": "GTK Linux 32-bit Release", "type": "BuildAndTest", "builddir": "gtk-linux-32-release",
+  "name": "GTK Linux 32-bit Release", "type": "BuildAndAPITest", "builddir": "gtk-linux-32-release",
   "platform": "gtk", "configuration": "release", "architectures": ["i386"],
   "slavenames": ["gtk-linux-slave-1"]
 },


Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (148744 => 148745)

--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2013-04-19 14:32:51 UTC (rev 148744)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2013-04-19 14:53:48 UTC (rev 148745)
@@ -738,6 +738,21 @@
 self.addStep(UploadBuiltProduct())
 self.addStep(trigger.Trigger(schedulerNames=triggers))
 
+class BuildAndAPITestFactory(Factory):
+def __init__(self, platform, configuration, architectures, triggers=None, SVNMirror=None):
+Factory.__init__(self, platform, configuration, architectures, True, SVNMirror)
+self.addStep(CompileWebKit())
+if triggers:
+self.addStep(ArchiveBuiltProduct())
+self.addStep(UploadBuiltProduct())
+self.addStep(trigger.Trigger(schedulerNames=triggers))
+if platform == "efl":
+self.addStep(RunEflAPITests)
+if platform == "gtk":
+self.addStep(RunGtkAPITests())
+if platform.startswith("qt"):
+self.addStep(RunQtAPITests)
+
 def unitTestsSupported(configuration, platform):
 if platform.startswith('mac') and configuration == "release":
 return False; # https://bugs.webkit.org/show_bug.cgi?id=82652


Modified: trunk/Tools/ChangeLog (148744 => 148745)

--- trunk/Tools/ChangeLog	2013-04-19 14:32:51 UTC (rev 148744)
+++ trunk/Tools/ChangeLog	2013-04-19 14:53:48 UTC (rev 148745)
@@ -1,3 +1,16 @@
+2013-04-17  Gustavo Noronha Silva  
+
+[GTK] Make the 32 bits bot only build and run API tests
+https://bugs.webkit.org/show_bug.cgi?id=113532
+
+Reviewed by Martin Robinson.
+
+* BuildSlaveSupport/build.webkit.org-config/config.json: make the 32 bits bot use the new BuildAndAPITest type
+* BuildSlaveSupport/build.webkit.org-config/master.cfg:
+(BuildAndAPITestFactory): new factory that builds and runs API tests, only used by the GTK+ 32 bits bot at the
+moment;
+(BuildAndAPITestFactory.__init__): add API tests step for platforms that have it.
+
 2013-04-19  Andras Becsi  
 
 [Qt] Only use thin archives on Linux






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


[webkit-changes] [148449] trunk/Tools

2013-04-15 Thread kov
Title: [148449] trunk/Tools








Revision 148449
Author k...@webkit.org
Date 2013-04-15 10:52:01 -0700 (Mon, 15 Apr 2013)


Log Message
[GTK] Missing a few packages for building on stock Fedora
https://bugs.webkit.org/show_bug.cgi?id=113916

Reviewed by Philippe Normand.

* gtk/install-dependencies: add packages that are missing.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/gtk/install-dependencies




Diff

Modified: trunk/Tools/ChangeLog (148448 => 148449)

--- trunk/Tools/ChangeLog	2013-04-15 17:46:05 UTC (rev 148448)
+++ trunk/Tools/ChangeLog	2013-04-15 17:52:01 UTC (rev 148449)
@@ -1,3 +1,12 @@
+2013-04-15  Gustavo Noronha Silva  
+
+[GTK] Missing a few packages for building on stock Fedora
+https://bugs.webkit.org/show_bug.cgi?id=113916
+
+Reviewed by Philippe Normand.
+
+* gtk/install-dependencies: add packages that are missing.
+
 2013-04-15  Zan Dobersek  
 
 REGRESSION (r148360): Failure in webkitpy.tool.multicommandtool_unittest.MultiCommandToolTest.test_command_help


Modified: trunk/Tools/gtk/install-dependencies (148448 => 148449)

--- trunk/Tools/gtk/install-dependencies	2013-04-15 17:46:05 UTC (rev 148448)
+++ trunk/Tools/gtk/install-dependencies	2013-04-15 17:52:01 UTC (rev 148449)
@@ -114,7 +114,7 @@
 freetype-devel \
 gcc-c++ \
 geoclue-devel \
-gettext \
+gettext-devel \
 gobject-introspection-devel \
 gperf \
 gstreamer1-devel \
@@ -131,13 +131,15 @@
 libwebp-devel \
 libxslt-devel \
 libXt-devel \
+libXtst-devel \
 libgudev1-devel \
 mesa-libGL-devel \
 pcre-devel \
 ruby \
 sqlite-devel \
 perl-Switch \
-perl-version
+perl-version \
+python-devel
 
 # These are dependencies necessary for running tests.
 yum install \






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


[webkit-changes] [147548] trunk

2013-04-03 Thread kov
Title: [147548] trunk








Revision 147548
Author k...@webkit.org
Date 2013-04-03 06:20:29 -0700 (Wed, 03 Apr 2013)


Log Message
Should close select popup when the element loses focus
https://bugs.webkit.org/show_bug.cgi?id=113220

Patch by Gustavo Noronha Silva  on 2013-04-03
Reviewed by Kent Tamura.

Source/WebCore:

Test: fast/forms/select-popup-closes-on-blur.html

* html/HTMLSelectElement.cpp:
(WebCore::HTMLSelectElement::menuListDefaultEventHandler): handle the blur event, closing
the popup menu if any.
* testing/Internals.cpp:
(WebCore::Internals::isSelectPopupVisible): utility to query the select node renderer to
find out whether the popup is open or closed.
(WebCore):
* testing/Internals.h: add the new method definition.
* testing/Internals.idl: ditto.

Source/WebKit/win:

* WebKit.vcproj/WebKitExports.def.in: export WebCore::HTMLNames::selectTag for Internals

LayoutTests:

* fast/forms/select/popup-closes-on-blur-expected.txt: Added.
* fast/forms/select/popup-closes-on-blur.html: Added.
* platform/mac/TestExpectations:
* platform/win/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/mac/TestExpectations
trunk/LayoutTests/platform/win/TestExpectations
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/html/HTMLSelectElement.cpp
trunk/Source/WebCore/testing/Internals.cpp
trunk/Source/WebCore/testing/Internals.h
trunk/Source/WebCore/testing/Internals.idl
trunk/Source/WebKit/win/ChangeLog
trunk/Source/WebKit/win/WebKit.vcproj/WebKitExports.def.in
trunk/Source/autotools/symbols.filter


Added Paths

trunk/LayoutTests/fast/forms/select/popup-closes-on-blur-expected.txt
trunk/LayoutTests/fast/forms/select/popup-closes-on-blur.html




Diff

Modified: trunk/LayoutTests/ChangeLog (147547 => 147548)

--- trunk/LayoutTests/ChangeLog	2013-04-03 13:20:28 UTC (rev 147547)
+++ trunk/LayoutTests/ChangeLog	2013-04-03 13:20:29 UTC (rev 147548)
@@ -1,3 +1,15 @@
+2013-04-03  Gustavo Noronha Silva  
+
+Should close select popup when the element loses focus
+https://bugs.webkit.org/show_bug.cgi?id=113220
+
+Reviewed by Kent Tamura.
+
+* fast/forms/select/popup-closes-on-blur-expected.txt: Added.
+* fast/forms/select/popup-closes-on-blur.html: Added.
+* platform/mac/TestExpectations:
+* platform/win/TestExpectations:
+
 2013-04-03  Antoine Quint  
 
 Web Inspector: crash in WebCore::InspectorLayerTreeAgent::buildObjectForLayer if a layer is created for an anonymous RenderObject (:first-letter)


Added: trunk/LayoutTests/fast/forms/select/popup-closes-on-blur-expected.txt (0 => 147548)

--- trunk/LayoutTests/fast/forms/select/popup-closes-on-blur-expected.txt	(rev 0)
+++ trunk/LayoutTests/fast/forms/select/popup-closes-on-blur-expected.txt	2013-04-03 13:20:29 UTC (rev 147548)
@@ -0,0 +1,11 @@
+Test for http://bugs.webkit.org/show_bug.cgi?id=113220: ensures select popup closes when focus changes.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS internals.isSelectPopupVisible(popup) is true
+PASS internals.isSelectPopupVisible(popup) is false
+PASS successfullyParsed is true
+
+TEST COMPLETE
+  


Added: trunk/LayoutTests/fast/forms/select/popup-closes-on-blur.html (0 => 147548)

--- trunk/LayoutTests/fast/forms/select/popup-closes-on-blur.html	(rev 0)
+++ trunk/LayoutTests/fast/forms/select/popup-closes-on-blur.html	2013-04-03 13:20:29 UTC (rev 147548)
@@ -0,0 +1,41 @@
+
+
+
+
+
+

+
+ + + +