- 08 Jan, 2010 40 commits
-
-
ggaren@apple.com authored
Reviewed by Oliver Hunt. Memory use grows grows possibly unbounded in this JavaScript Array test case https://bugs.webkit.org/show_bug.cgi?id=31675 This fixes one observed bug in this test case, which is that arrays don't report extra cost for the sparse value maps. SunSpider reports a small speedup. * runtime/JSArray.cpp: (JSC::JSArray::putSlowCase): Report extra memory cost for the sparse value map. * runtime/JSArray.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53025 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Alexey Proskuryakov. http/tests/xmlhttprequest/logout.html failed on Tiger Bot https://bugs.webkit.org/show_bug.cgi?id=31412 * platform/mac-tiger/Skipped: After talking with Alexey, we're just gonna skip the failing test on Tiger. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53024 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=32962 HTML tags are wrongfully parsed when setting innerHTML of a SCRIPT element Also fixed the same for STYLE elements. Tests: fast/dom/css-innerHTML.html fast/dom/script-innerHTML-x.xhtml fast/dom/script-innerHTML.html * html/HTMLElement.cpp: (WebCore::HTMLElement::setInnerHTML): Don't parse JS or CSS as HTML, matching Firefox. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53023 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bfulgham@webkit.org authored
Protect video control logic inside ENABLE(VIDEO). * WebView.cpp: (WebView::enterFullscreenForNode): (WebView::exitFullscreen): * WebView.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53022 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dumi@chromium.org authored
for denying RANDOMBLOB calls in HTML5 DB transactions. Reviewed by Eric Seidel. https://bugs.webkit.org/show_bug.cgi?id=33396 * storage/open-database-while-transaction-in-progress.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53021 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ddkilzer@apple.com authored
Rubber-stamped by Alexey Proskuryakov. * data/params: Prepended 'bug_status=UNCONFIRMED&' to 'defaultquery' parameter. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53020 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=33279 fast/websockets/websocket-event-target.html causes any test after it to fail * fast/websockets/script-tests/websocket-event-target.js: The test uses an HTTP server URL to create a WebSocket, so an error may be logged to console when detected (this is timing dependent). * platform/mac/Skipped: Removed the test from Skipped list. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53019 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Adam Barth. run-javascriptcore-tests needs a --quiet flag https://bugs.webkit.org/show_bug.cgi?id=33399 Until run-javascriptcore-tests has a --quiet flag, lets just stiffle the output in webkit-patch. * Scripts/webkitpy/steps/runtests.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53018 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
https://bugs.webkit.org/show_bug.cgi?id=32757bdakin@apple.com authored
with -webkit-shadow on svg shapes -and- <rdar://problem/7389149> Reviewed by Oliver Hunt. Inflate the repaintRect for the shadow using its extent. * rendering/RenderForeignObject.cpp: (WebCore::RenderForeignObject::computeRectForRepaint): * rendering/RenderSVGImage.cpp: (WebCore::RenderSVGImage::computeRectForRepaint): * rendering/RenderSVGModelObject.cpp: (WebCore::RenderSVGModelObject::computeRectForRepaint): * rendering/RenderSVGRoot.cpp: (WebCore::RenderSVGRoot::repaintRectInLocalCoordinates): (WebCore::RenderSVGRoot::computeRectForRepaint): * rendering/RenderSVGText.cpp: (WebCore::RenderSVGText::computeRectForRepaint): * rendering/SVGRenderSupport.cpp: (WebCore::getSVGShadowExtent): (WebCore::SVGRenderBase::inflateForShadow): * rendering/SVGRenderSupport.h: LayoutTests: Tests for https://bugs.webkit.org/show_bug.cgi?id=32757 Repaint bug with -webkit-shadow on svg shapes -and- <rdar://problem/7389149> Reviewed by Oliver Hunt. * fast/repaint/moving-shadow-on-container.html: Added. * fast/repaint/moving-shadow-on-path.html: Added. * platform/mac/fast/repaint/moving-shadow-on-container-expected.checksum: Added. * platform/mac/fast/repaint/moving-shadow-on-container-expected.png: Added. * platform/mac/fast/repaint/moving-shadow-on-container-expected.txt: Added. * platform/mac/fast/repaint/moving-shadow-on-path-expected.checksum: Added. * platform/mac/fast/repaint/moving-shadow-on-path-expected.png: Added. * platform/mac/fast/repaint/moving-shadow-on-path-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53017 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ddkilzer@apple.com authored
* template/en/custom/attachment/reviewform.html.tmpl: Check attachment.ispatch (not just ispatch) when deciding whether to display patch status. Also update layout a bit. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53016 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
Only run http and websocket tests as last if no argument is given to be able to explicitly control the test order. Patch by Andras Becsi <abecsi@inf.u-szeged.hu> on 2010-01-08 Reviewed by Alexey Proskuryakov. To be able to run multiple instances of run-webkit-tests besides each other on the same machine we need to minimize the time when Apache and WebSocketServer is locked by tests. Because closeHTTPD() and closeWebSocketServer() is only called at the end of the testing, we need to run http and websocket tests after all other tests. If one however explicitly specifies the tests to run in the argument list of run-webkit-tests we need to preserve the given order. * Scripts/run-webkit-tests: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53015 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ddkilzer@apple.com authored
* data/params: Updated 'timezone' to turn off DST. Updated 'usebugaliases' and 'usevotes' to turn them off. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53014 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. Don't post style-queue pass messages to bugs https://bugs.webkit.org/show_bug.cgi?id=33404 These messages aren't needed any more now that we have the status bubble reporting pass events passively. * Scripts/webkitpy/commands/queues.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53013 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=32294 http/tests/uri/escaped-entity.html affects the output of svg/W3C-SVG-1.1/filters-conv-01-f.svg Changed the test to not have any funky characters. Filed bug 33400 to track the underlying problem with kerning. * http/tests/uri/escaped-entity-expected.txt: * http/tests/uri/escaped-entity.html: * platform/mac/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53012 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Eric Seidel. Optimize the number of CPUs used for building Qt and Gtk https://bugs.webkit.org/show_bug.cgi?id=33394 Instead of hardcoding the number 8, we should read the number of CPUs from the environment. * Scripts/webkitpy/executive.py: * Scripts/webkitpy/webkitport.py: * Scripts/webkitpy/webkitport_unittest.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53011 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dglazkov@chromium.org authored
Reviewed by Eric Seidel. New baselines to reflect the smaller repaint areas caused by r52839 https://bugs.webkit.org/show_bug.cgi?id=33271 * platform/mac/fast/repaint/background-misaligned-expected.checksum: * platform/mac/fast/repaint/background-misaligned-expected.png: * platform/mac/fast/repaint/block-selection-gap-in-composited-layer-expected.checksum: * platform/mac/fast/repaint/block-selection-gap-in-composited-layer-expected.png: * platform/mac/fast/repaint/float-in-new-block-with-layout-delta-expected.checksum: * platform/mac/fast/repaint/float-in-new-block-with-layout-delta-expected.png: * platform/mac/fast/repaint/float-new-in-block-expected.checksum: * platform/mac/fast/repaint/float-new-in-block-expected.png: * platform/mac/fast/repaint/line-flow-with-floats-1-expected.checksum: * platform/mac/fast/repaint/line-flow-with-floats-1-expected.png: * platform/mac/fast/repaint/selected-replaced-expected.checksum: * platform/mac/fast/repaint/selected-replaced-expected.png: * platform/mac/fast/repaint/transform-replaced-shadows-expected.checksum: * platform/mac/fast/repaint/transform-replaced-shadows-expected.png: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53010 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Dimitri Glazkov. WebGLArray subclasses do the wrong conversion in indexSetter https://bugs.webkit.org/show_bug.cgi?id=33350 * fast/canvas/webgl/array-setters-expected.txt: Added. * fast/canvas/webgl/array-setters.html: Added. * fast/canvas/webgl/array-unit-tests-expected.txt: * fast/canvas/webgl/array-unit-tests.html: 2010-01-08 Kenneth Russell <kbr@google.com> Reviewed by Dimitri Glazkov. WebGLArray subclasses do the wrong conversion in indexSetter https://bugs.webkit.org/show_bug.cgi?id=33350 Test: fast/canvas/webgl/array-setters.html * bindings/js/JSWebGLFloatArrayCustom.cpp: (WebCore::JSWebGLFloatArray::indexSetter): * bindings/js/JSWebGLUnsignedIntArrayCustom.cpp: (WebCore::JSWebGLUnsignedIntArray::indexSetter): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53009 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
yong.li@torchmobile.com authored
Reviewed by Darin Adler. Remove unnecessary #include from FastMalloc.cpp https://bugs.webkit.org/show_bug.cgi?id=33393 * wtf/FastMalloc.cpp: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53008 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Darin Adler. Show patch status in bugs.webkit.org https://bugs.webkit.org/show_bug.cgi?id=33368 This patch adds an iframe to the show_bug page and the edit attachment page that displays whether the attachment passed the various bots. * template/en/custom/attachment/edit.html.tmpl: * template/en/custom/attachment/list.html.tmpl: * template/en/custom/attachment/reviewform.html.tmpl: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53007 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ojan@chromium.org authored
Reviewed by Darin Adler. transitions/cancel-transition.html is flaky https://bugs.webkit.org/show_bug.cgi?id=33398 There's a race between the check() call and the final setTimeout. Just remove the final setTimeout and put its contents in the check call itself. * transitions/cancel-transition.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53006 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Kenneth Rohde Christiansen. [Qt] Delegation client https://bugs.webkit.org/show_bug.cgi?id=32826 Factory related code removed from QtAbstractWebPopup. Popups are now created by ChromeClientQt. Popup content information struct added to class QtAbstractWebPopup. PopupMenuClient is now hidden from higher layers. QtAbstractWebPopup now receives content information and font as parameters of method populate. QtFallbackWebPopup moved to WebKit/qt/WebCoreSupport. * WebCore.pro: * platform/qt/PopupMenuQt.cpp: (WebCore::PopupMenu::PopupMenu): (WebCore::getItems): (WebCore::PopupMenu::show): * platform/qt/QtAbstractWebPopup.cpp: (WebCore::QtAbstractWebPopup::QtAbstractWebPopup): (WebCore::QtAbstractWebPopup::popupDidHide): (WebCore::QtAbstractWebPopup::valueChanged): * platform/qt/QtAbstractWebPopup.h: (WebCore::QtAbstractWebPopup::Item::): * platform/qt/QtFallbackWebPopup.cpp: Removed. * platform/qt/QtFallbackWebPopup.h: Removed. 2010-01-08 Luiz Agostini <luiz.agostini@openbossa.org> Reviewed by Kenneth Rohde Christiansen. [Qt] Delegation client https://bugs.webkit.org/show_bug.cgi?id=32826 Added method createPopup to ChromeClientQt used to create popups. QtFallbackWebPopup moved from WebCore/platform/qt to WebKit/qt/WebCoreSupport. * WebCoreSupport/ChromeClientQt.cpp: (WebCore::ChromeClientQt::createPopup): * WebCoreSupport/ChromeClientQt.h: * WebCoreSupport/QtFallbackWebPopup.cpp: Added. (WebCore::QtFallbackWebPopup::QtFallbackWebPopup): (WebCore::QtFallbackWebPopup::show): (WebCore::QtFallbackWebPopup::populate): (WebCore::QtFallbackWebPopup::showPopup): (WebCore::QtFallbackWebPopup::hidePopup): (WebCore::QtFallbackWebPopup::activeChanged): (WebCore::QtFallbackWebPopup::setParent): * WebCoreSupport/QtFallbackWebPopup.h: Added. (WebCore::QtFallbackWebPopup::hide): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53005 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Darin Adler. Skip invalid blocks in CSS property declarations. https://bugs.webkit.org/show_bug.cgi?id=31231 https://bugs.webkit.org/show_bug.cgi?id=26619 This patch makes the CSS parser skip property declarations containing invalid blocks. * fast/css/parsing-error-recovery-expected.txt: Added. * fast/css/parsing-error-recovery.html: Added. 2010-01-08 Yuzo Fujishima <yuzo@google.com> Reviewed by Darin Adler. Skip invalid blocks in CSS property declarations. https://bugs.webkit.org/show_bug.cgi?id=31231 https://bugs.webkit.org/show_bug.cgi?id=26619 This patch makes the CSS parser skip property declarations containing invalid blocks. Test: fast/css/parsing-error-recovery.html * css/CSSGrammar.y: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53004 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
http://trac.webkit.org/changeset/52998cmarrin@apple.com authored
The media controller on Windows now has a full-screen button, which changes the layout and therefore the test results. I regenerated them for Windows. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53003 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bweinstein@apple.com authored
The Windows Release bots were having trouble with the xmlhttprequest tests, so they were skipped (r50280). They all currently pass on my machine, so unskipping them now. * platform/win/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53002 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
darin@chromium.org authored
Reviewed by Dimitri Glazkov. [Chromium] Upstream webkit unit tests from the chromium repository https://bugs.webkit.org/show_bug.cgi?id=33351 This adds one such test (for KURL) and sets up the test framework. Switch WebKit to build a static library on all platforms. Add a webkit_unit_tests executable target that runs the unit tests and also ensures that we don't have any missing symbols (a function that WebKit as a shared library used to serve). Changes chromium_src_dir to ../../WebKit/chromium to match how WebCore.gyp defines that variable. * WebKit.gyp: * public/WebKitClient.h: (WebKit::WebKitClient::getPluginList): Remove bogus trailing semi-colon. (WebKit::WebKitClient::decrementStatsCounter): Remove bogus trailing semi-colon. (WebKit::WebKitClient::incrementStatsCounter): Remove bogus trailing semi-colon. (WebKit::WebKitClient::traceEventBegin): Remove bogus trailing semi-colon. (WebKit::WebKitClient::traceEventEnd): Remove bogus trailing semi-colon. (WebKit::WebKitClient::histogramCounts): Remove bogus trailing semi-colon. * tests: Added. * tests/KURLTest.cpp: Added. * tests/WebKitTest.h: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53001 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
cfleizach@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=33308 Reviewed by Beth Dakin. WebCore: Test: platform/mac/accessibility/css-content-attribute.html * accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::textUnderElement): LayoutTests: * platform/mac/accessibility/css-content-attribute-expected.txt: Added. * platform/mac/accessibility/css-content-attribute.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53000 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ojan@chromium.org authored
Reviewed by Eric Seidel. transitions/shorthand-border-transitions.html is flaky https://bugs.webkit.org/show_bug.cgi?id=33276 Yet another transitions test that doesn't give consistent wiggle room. Make all the wiggle rooms account for >=200ms instead of some that were only giving 100ms wiggle room. * transitions/shorthand-border-transitions.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52999 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
cmarrin@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=31318 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52998 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bfulgham@webkit.org authored
Accidentally left unnecessary modification to hdcFromContext in when landing r52995. * WebFrame.cpp: (hdcFromContext): Back out unneeded modification. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52997 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Adam Barth. Fix a regression that removed a call to FrameLoaderClient::didDestroyScriptContextForFrame. https://bugs.webkit.org/show_bug.cgi?id=33347 * bindings/v8/V8DOMWindowShell.cpp: (WebCore::V8DOMWindowShell::disposeContextHandles): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52996 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bfulgham@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=33022. Reviewed by Adam Roben. * plugins/win/PluginViewWin.cpp: (WebCore::PluginView::paintWindowedPluginIntoContext): Tell cairo printing surface to flush so that blank regions do not write over the plugin's paint operations. * rendering/RenderLayer.cpp: Build fix. (WebCore::RenderLayer::beginTransparencyLayers): Correct method signature missing for ColorSpace. WebKit/win: Use correct cairo surface data type for handling print operations. https://bugs.webkit.org/show_bug.cgi?id=33022. Reviewed by Adam Roben. * WebFrame.cpp: (scaleFactor): Handle 'scale = 0' case. (WebFrame::spoolPage): Use scaleFactor helper function. Account for margin size in region passed to header/footer routines. (WebFrame::spoolPages): Properly clean up Cairo surface. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52995 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
cfleizach@apple.com authored
REGRESSION(52819?): AXLoadComplete and AXLayoutComplete causes 4 tests fail on Snow Leopard Debug bot https://bugs.webkit.org/show_bug.cgi?id=33300 Reviewed by Eric Seidel. WebCore: * accessibility/mac/AccessibilityObjectWrapper.mm: (-[AccessibilityObjectWrapper accessibilitySetPostedNotificationCallback:withContext:]): (-[AccessibilityObjectWrapper accessibilityPostedNotification:]): WebKitTools: * DumpRenderTree/AccessibilityUIElement.h: * DumpRenderTree/mac/AccessibilityUIElementMac.mm: (AccessibilityUIElement::AccessibilityUIElement): (AccessibilityUIElement::~AccessibilityUIElement): (_accessibilityNotificationCallback): (AccessibilityUIElement::addNotificationListener): LayoutTests: * platform/mac/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52994 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52993 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
r52976 revealed this failure by re-ordering tests. I do not have a Snow Leopard build to test with, so skipping this and filed bug https://bugs.webkit.org/show_bug.cgi?id=33372 * platform/mac-snowleopard/Skipped: platform/mac/editing/input/devanagari-ligature.html skipped. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52992 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
LayoutTests/media/video-error-abort.html moved to LayoutTests/http/tests/media/video-error-abort.html by r52923, but wasn't renamed in this skiplist by this commit. * platform/win/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52991 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
r52980 corrected the expected results file, but Windows still fails, presumably due to another test still affecting this one. Reviewed by Eric Seidel. I do not have a windows build to test with, so skipping this and filed bug https://bugs.webkit.org/show_bug.cgi?id=33374 * platform/win/Skipped: svg/W3C-SVG-1.1/filters-conv-01-f.svg skipped. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52990 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Simon Hausmann. commit-queue should run run-javascriptcore-tests https://bugs.webkit.org/show_bug.cgi?id=33376 I also made it run the python and perl unit tests. * Scripts/webkitpy/steps/runtests.py: * Scripts/webkitpy/webkitport.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52989 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Xan Lopez. [GTK] Threading problems with some of the tests https://bugs.webkit.org/show_bug.cgi?id=30814 We are going to skip all the storage tests until we find the issue with the threading system in the gtk port. * platform/gtk/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52988 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
No review, rolling out r52983. http://trac.webkit.org/changeset/52983 https://bugs.webkit.org/show_bug.cgi?id=33321 Broke 59 JavaScriptCore tests. I don't think Kent knew about run-javascriptcore-tests. Sadly neither does the commit-bot, yet. * runtime/RegExp.cpp: (JSC::RegExp::RegExp): * runtime/RegExp.h: (JSC::RegExp::flags): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52987 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kov@webkit.org authored
Reviewed by Xan Lopez. [GTK] loading test should use SoupServer instead of actual sites https://bugs.webkit.org/show_bug.cgi?id=33353 Make all the loading tests use SoupServer, instead of fetching stuff from the Internet. * tests/testloading.c: (server_callback): (get_uri_for_path): (test_loading_status): (test_loading_error): (test_loading_cancelled): (load_wentback_status_changed_cb): (load_error_test): (test_loading_goback): (main): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52986 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-