- 19 Mar, 2009 26 commits
-
-
ggaren@apple.com authored
2009-03-19 Cameron Zwarich <cwzwarich@uwaterloo.ca> Reviewed by Geoff Garen. Bug 23771: REGRESSION (r36016): JSObjectHasProperty freezes on global class without kJSClassAttributeNoAutomaticPrototype <https://bugs.webkit.org/show_bug.cgi?id=23771> <rdar://problem/6561016> * API/tests/testapi.c: (main): Add a test for this bug. * runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::resetPrototype): Don't set the prototype of the last object in the prototype chain to the object prototype when the object prototype is already the last object in the prototype chain. LayoutTests: 2009-03-19 Geoffrey Garen <ggaren@apple.com> Reviewed by Oliver Hunt. Fixed <rdar://problem/6279213> Regular expression run-time complexity limit too low for long inputs (21485) Added a test for a complex regexp match that should succeed, and one that should fail. * fas...
-
mrowe@apple.com authored
Reviewed by Sam Weinig. * fast/canvas/resources/set-colors.js: * fast/canvas/set-colors-expected.txt: * platform/mac-leopard/fast/canvas/set-colors-expected.txt: Copied from LayoutTests/fast/canvas/set-colors-expected.txt. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41848 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
Reviewed by Dan Bernstein. <rdar://problem/6682554> Flash content not being rendered (Shockwave Flash 10.0 r22) If calling updateWidget for some reason resulted in another widget being added to m_widgetUpdateSet, then that object would never be updated. * page/FrameView.cpp: (WebCore::FrameView::updateWidgets): Factor the widget updating code out into this method. Return true if the update set is empty. (WebCore::FrameView::performPostLayoutTasks): Loop over the update set multiple times until all widgets have been updated or until we reach the cap. * page/FrameView.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41847 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
cwzwarich@webkit.org authored
Reviewed by Geoff Garen. Bug 23771: REGRESSION (r36016): JSObjectHasProperty freezes on global class without kJSClassAttributeNoAutomaticPrototype <https://bugs.webkit.org/show_bug.cgi?id=23771> <rdar://problem/6561016> * API/tests/testapi.c: (main): Add a test for this bug. * runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::resetPrototype): Don't set the prototype of the last object in the prototype chain to the object prototype when the object prototype is already the last object in the prototype chain. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41846 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
timothy@apple.com authored
Introduces a new RunLoopTimer class that has an API mimicking Timer but allows it to be scheduled with one or more SchedulePairs. <rdar://problem/6687342> -[WebView scheduleInRunLoop:forMode:] has no affect on timers Reviewed by Darin Adler. * WebCore.xcodeproj/project.pbxproj: Adds the new RunLoopTimer.{cpp,h} files. * loader/MainResourceLoader.cpp: (WebCore::MainResourceLoader::handleDataLoadNow): Use the MainResourceLoaderTimer typedef. (WebCore::MainResourceLoader::startDataLoadTimer): Added. Start the timer and on Mac platforms also schedule with the Page's SchedulePairs. (WebCore::MainResourceLoader::handleDataLoadSoon): Call startDataLoadTimer(). (WebCore::MainResourceLoader::setDefersLoading): Ditto. * loader/MainResourceLoader.h: * platform/cf/RunLoopTimerCF.cpp: Added. (WebCore::RunLoopTimerBase::~RunLoopTimerBase): (WebCore::timerFired): (WebCore::RunLoopTimerBase::start): (WebCore::RunLoopTimerBase::schedule): (WebCore::RunLoopTimerBase::stop): (WebCore::RunLoopTimerBase::isActive): * platform/RunLoopTimer.h: Added. (WebCore::RunLoopTimerBase::RunLoopTimerBase): (WebCore::RunLoopTimerBase::startRepeating): (WebCore::RunLoopTimerBase::startOneShot): (WebCore::RunLoopTimer::RunLoopTimer): (WebCore::RunLoopTimer::fired): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41845 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kov@webkit.org authored
Reviewed by Mark Rowe. Make determinePassedArchitecture always consume the --32-bit option, also in non-AppleMacWebkit platforms. Solution pointed out by Mark Rowe. * Scripts/webkitdirs.pm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41844 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hyatt@apple.com authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41843 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ggaren@apple.com authored
2009-03-19 Geoffrey Garen <ggaren@apple.com> Reviewed by Sam Weinig. Fixed <rdar://problem/6603562> REGRESSION (Safari 4): regular expression pattern size limit lower than Safari 3.2, other browsers, breaks SAP (14873) Bumped the pattern size limit to 1MB, and standardized it between PCRE and WREC. (Empirical testing says that we can easily compile a 1MB regular expression without risking a hang. Other browsers support bigger regular expressions, but also hang.) SunSpider reports no change. I started with a patch posted to Bugzilla by Erik Corry (erikcorry@google.com). * pcre/pcre_internal.h: (put3ByteValue): (get3ByteValue): (put3ByteValueAndAdvance): (putLinkValueAllowZero): (getLinkValueAllowZero): Made PCRE's "LINK_SIZE" (the number of bytes used to record jumps between bytecodes) 3, to accomodate larger potentia...
-
dglazkov@chromium.org authored
Reviewed by Darin Fisher. https://bugs.webkit.org/show_bug.cgi?id=24702 Upstream miscellaneous bindings changes. * bindings/v8/ScheduledAction.cpp: (WebCore::ScheduledAction::execute): Changed to call lower-case evaluate. * bindings/v8/ScriptCallStack.h: Added an extra include. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41841 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simon.fraser@apple.com authored
Reviewed by Dave Hyatt https://bugs.webkit.org/show_bug.cgi?id=24686 When hit testing a RenderLayer whose parent lives in a preserves-3D hierarchy, we need to compare the computed z-offset with the depth-test z-offset before deciding that such a RenderLayer was hit. This fixes an issue, tested by the 3d-point-mapping-overlapping.html test, where the child of a transformed element is found by hit testing, even when some other element with greater Z overlaps them both. Improved the code by adding a utility method, isHitCandidate(), which computes and tests z-depth when necessary. Tests: transforms/3d/point-mapping/3d-point-mapping-coplanar.html transforms/3d/point-mapping/3d-point-mapping-overlapping.html * rendering/RenderLayer.cpp: (WebCore::isHitCandidate): (WebCore::RenderLayer::hitTestLayer): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41840 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dglazkov@chromium.org authored
Reviewed by Dimitri Glazkov. https://bugs.webkit.org/show_bug.cgi?id=24456 Split ColorChromium.cpp into Mac & Windows variants. Remove Chromium Dependency on platform/graphics/mac/ColorMac.mm since we ultimately need to take a different approach. For now, createCGColor() is copied from ColorMac.mm. No observable change in behavior, so no test. * platform/graphics/chromium/ColorChromium.cpp: (WebCore::focusRingColor): * platform/graphics/chromium/ColorChromiumMac.mm: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41839 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dglazkov@chromium.org authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41838 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dglazkov@chromium.org authored
Reviewed by Simon Fraser. https://bugs.webkit.org/show_bug.cgi?id=24678 Transitions tests somewhat flakey on Chromium. Modifies transitions/transition-end-event-helpers.js to only process results once. * transitions/transition-end-event-helpers.js: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41837 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dglazkov@chromium.org authored
Reviewed by Dimitri Glazkov. https://bugs.webkit.org/show_bug.cgi?id=24675 Unforking frontend: add custom InspectorController methods implementation. * bindings/v8/custom/V8InspectorControllerCustom.cpp: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41836 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dglazkov@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=24625 Adding an accessor to the currently selected index in the PopupMenuChromium. This is required for implementing the deletion of an autocomplete entry in Chromium. * platform/chromium/PopupMenuChromium.cpp: (WebCore::PopupContainer::selectedIndex): * platform/chromium/PopupMenuChromium.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41835 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
darin@chromium.org authored
Reviewed by Dimitri Glazkov. https://bugs.webkit.org/show_bug.cgi?id=24526 Improve windows skia text stroking. Test: LayoutTests/svg/custom/struct-use-09-b.svg * platform/graphics/skia/SkiaFontWin.cpp: Close the path representing each font glyph polygon, rather than only closing the path once per letter. This fixes stroking for letters with multiple polygons, such as 'A' or 'D'. (WebCore::getPathForGlyph): (WebCore::skiaDrawText): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41834 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41833 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
Reviewed by Simon Hausmann. Another fix for pedantic compilation in QtWebKit (patch from qt-copy) git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41832 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
Reviewed by Simon Hausmann. Fixes pedantic compilation in QtWebKit. There are no semi-colons after namespace declarations. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41831 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
Reviewed by Simon Hausmann. Doc: Removed obsolete warning about Flash and other plugins. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41830 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
Reviewed by Simon Hausmann. Properly escape tooltip text ManualTest: http://xkcd.com/554/ git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41829 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
Reviewed by Tor Arne Vestbø. Fixed support for doing calls from JavaScript into NPAPI Plugins for the Qt port on Windows. Removed dead code for distinguishing between Widget and PluginView in the Qt port. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41828 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rdar://problem/6698023mrowe@apple.com authored
Reviewed by Oliver Hunt. * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Copy fonts into DumpRenderTree.resources in the built products directory. * DumpRenderTree/mac/DumpRenderTree.mm: (activateFonts): Activate the fonts from disk. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41827 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
cwzwarich@webkit.org authored
Reviewed by Oliver Hunt. Bug 24596: ASSERT in JSC::PropertySlot::slotBase @ iGoogle homepage <https://bugs.webkit.org/show_bug.cgi?id=24596> <rdar://problem/6686493> JSDOMWindow::customGetOwnPropertySlot() does an access check after calling JSGlobalObject::getOwnPropertySlot(). This causes the PropertySlot to be set twice, once to the value that is illegal to access, and then to undefined This causes an assertion failure in property access caching code. The fix is to do the access check before calling JSGlobalObject::getOwnPropertySlot(). WebCore: * bindings/js/JSDOMWindowCustom.h: (WebCore::JSDOMWindow::customGetOwnPropertySlot): LayoutTests: * http/tests/security/cross-frame-access-get-custom-property-cached-expected.txt: Added. * http/tests/security/cross-frame-access-get-custom-property-cached.html: Added. * http/tests/security/resources/cross-frame-access-get-custom-property-cached-iframe.html: Added. * http/tests/security/resources/cross-frame-access.js: (shouldBeUndefined): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41826 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=24676 Simple cross-origin requests shouldn't dispatch upload progress events Test: http/tests/xmlhttprequest/simple-cross-origin-progress-events.html * loader/CrossOriginAccessControl.cpp: (WebCore::passesAccessControlCheck): Added a comment explaining the somewhat unexpected behavior of this function. * xml/XMLHttpRequestUpload.cpp: (WebCore::XMLHttpRequestUpload::hasListeners): * xml/XMLHttpRequestUpload.h: Report whether there are any event listeners registered. * xml/XMLHttpRequest.h: Added m_uploadEventsAllowed. * xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::createRequest): Set m_uploadEventsAllowed flag. (WebCore::XMLHttpRequest::makeSameOriginRequest): Ditto. (WebCore::XMLHttpRequest::makeCrossOriginAccessRequest): Ditto. (WebCore::XMLHttpRequest::makeSimpleCrossOriginAccessRequest): Set request body - it can be non-empty for POST requests. (WebCore::XMLHttpRequest::makeCrossOriginAccessRequestWithPreflight): Set m_uploadEventsAllowed flag. (WebCore::XMLHttpRequest::handleAsynchronousPreflightResult): Ditto. (WebCore::XMLHttpRequest::abort): Only dispatch upload progress events if allowed. (WebCore::XMLHttpRequest::networkError): Ditto. (WebCore::XMLHttpRequest::abortError): Ditto. (WebCore::XMLHttpRequest::didSendData): Ditto. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41825 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
darin@chromium.org authored
Reviewed by Darin Fisher. https://bugs.webkit.org/show_bug.cgi?id=24398 Fix a crash when loading a svg file in Chromium's test_shell and then reloading the page. * history/BackForwardListChromium.cpp: (WebCore::BackForwardList::BackForwardList): (WebCore::BackForwardList::close): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41824 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 18 Mar, 2009 14 commits
-
-
adachan@apple.com authored
Error: ..\..\runtime\DatePrototype.cpp(30) : fatal error C1083: Cannot open include file: 'langinfo.h': No such file or directory * runtime/DatePrototype.cpp: (JSC::formatLocaleDate): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41823 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rdar://problem/6530010mrowe@apple.com authored
Reviewed by Sam Weinig. * platform/mac-snowleopard/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41822 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mrowe@apple.com authored
what it was designed to test for some time, and is failing on some machines. Fixing the test is tracked by <https://bugs.webkit.org/show_bug.cgi?id=24690>. Rubber-stamped by Dan Bernstein. * platform/mac/plugins/pluginDocumentView-deallocated-dataSource.html-disabled: Renamed from LayoutTests/platform/mac/plugins/pluginDocumentView-deallocated-dataSource.html. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41821 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
Reviewed by Oliver Hunt. WebKit side of <rdar://problem/6688244>. Try reinitializing the vendor port if it's invalid. * Plugins/Hosted/NetscapePluginHostManager.mm: (WebKit::NetscapePluginHostManager::spawnPluginHost): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41820 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rdar://problem/6693300mrowe@apple.com authored
Reviewed by Dan Bernstein. Switch from using printf to using the NPAPI to invoke console.log so that plug-in messages appear in test results even when the plug-in's stdout differs from DumpRenderTree's stdout. * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp: (log): Invoke console.log via the NPAPI. (NPP_Destroy): Call log instead of printf. (NPP_SetWindow): Ditto. (handleEventCarbon): Ditto. (handleEventCocoa): Ditto. (NPP_HandleEvent): Pass the instance in to the event handler. Update test results for change to address <rdar://problem/6693300>. * plugins/mouse-events-expected.txt: * plugins/netscape-destroy-plugin-script-objects-expected.txt: * plugins/netscape-plugin-setwindow-size-2-expected.txt: * plugins/netscape-plugin-setwindow-size-expected.txt: * plugins/open-and-close-window-with-plugin-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41819 268f45cc-cd09-0410-ab3c-d526...
-
kov@webkit.org authored
2009-03-18 Gustavo Noronha Silva <gns@gnome.org> and Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> Reviewed by Darin Adler. https://bugs.webkit.org/show_bug.cgi?id=24674 Crashes in !PLATFORM(MAC)'s formatLocaleDate, in very specific situations Make sure strftime never returns 2-digits years to avoid ambiguity and a crash. * runtime/DatePrototype.cpp: (JSC::formatLocaleDate): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41818 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
sfalken@apple.com authored
Reviewed by Adam Roben. * Interfaces/IWebUIDelegatePrivate.idl: * Interfaces/WebKit.idl: * WebView.cpp: (WebView::close): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41817 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric.carlson@apple.com authored
Reviewed by Simon Fraser. Fix for <rdar://problem/6685235> <video> element poster cannot be set dynamically if not originally set up in HTML Allocate the media engine immediately so the plug-in proxy is available for scripting right away. * platform/graphics/MediaPlayer.cpp: (WebCore::MediaPlayer::MediaPlayer): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41816 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bdakin@apple.com authored
Rubber-stamped by Dan Bernstein. Updating test to reflect our joy. * fast/dom/offset-parent-positioned-and-inline-expected.txt: * fast/dom/offset-parent-positioned-and-inline.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41815 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bdakin@apple.com authored
2009-03-18 Beth Dakin <bdakin@apple.com> Reviewed by Dave Hyatt. Fix for <rdar://problem/6636747> REGRESSION (Safari 4 PB-r41326): Popup menu appears at the wrong location on page at http:// www.signonsandiego.com/ This was a regression from http://trac.webkit.org/changeset/40769, which changed the base class of RenderInline to RenderBoxModelObject rather than RenderBox. * rendering/RenderObject.cpp: (WebCore::RenderObject::offsetParent): offsetParent should return a RenderBoxModelObject rather than just a RenderBox, which is more restrictive. LayoutTests: 2009-03-18 Beth Dakin <bdakin@apple.com> Reviewed by Dave Hyatt. Test for <rdar://problem/6636747> REGRESSION (Safari 4 PB-r41326): Popup menu appears at the wrong location on page at http:// www.signonsandiego.com/ * fast/dom/offset-parent-positioned-and-inline-expected.txt: Added. * fast/dom/offset-parent-positioned-and-inline.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41814 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
2009-03-18 Anders Carlsson <andersca@apple.com> Reviewed by Darin Adler. <rdar://problem/6504776> CrashTracer: [USER] 188 crashes in Safari at com.apple.WebCore ⢠WTF::HashTableIterator<WTF::RefPtr<WebCore::ResourceLoader>, ... Return early in case calling the client ends up spinning the run loop and completing/cancelling the load. * loader/NetscapePlugInStreamLoader.cpp: (WebCore::NetscapePlugInStreamLoader::didCancel): WebKit/mac: 2009-03-18 Anders Carlsson <andersca@apple.com> Reviewed by Darin Adler. <rdar://problem/6504776> CrashTracer: [USER] 188 crashes in Safari at com.apple.WebCore ⢠WTF::HashTableIterator<WTF::RefPtr<WebCore::ResourceLoader>, ... If the m_pluginView member was zeroed out as a result of making a call into the plug-in, the pluginFunctionCallDepth would be off causing the plug-in never to be stopped. Simplify the code by using a RAII object. * Plugins/WebBaseNetscapePluginStream.mm: (PluginStopDeferrer::PluginStopDeferrer): (PluginStopDeferrer::~PluginStopDeferrer): (WebNetscapePluginStream::startStream): (WebNetscapePluginStream::wantsAllStreams): (WebNetscapePluginStream::destroyStream): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41813 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
levin@chromium.org authored
Reviewed by Dimitri Glazkov. https://bugs.webkit.org/show_bug.cgi?id=24664 Upstreaming v8 collection.h No change in behavior, so no test. * bindings/v8/V8Collection.h: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41812 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
weinig@apple.com authored
2009-03-18 Sam Weinig <sam@webkit.org> Reviewed by Simon Fraser. Fix for https://bugs.webkit.org/show_bug.cgi?id=23966 REGRESSION: Custom arrow navigation functionality doesn't work at dropular.net <rdar://problem/6589657> Match the CSSOM spec for getClientRects and getBoundingClientRect by returning a 0x0 rect at the correct top/left position for empty inline boxes. * rendering/RenderInline.cpp: (WebCore::RenderInline::absoluteRects): (WebCore::RenderInline::absoluteQuads): LayoutTests: 2009-03-18 Sam Weinig <sam@webkit.org> Reviewed by Simon Fraser. Update test results for https://bugs.webkit.org/show_bug.cgi?id=23966 REGRESSION: Custom arrow navigation functionality doesn't work at dropular.net <rdar://problem/6589657> * fast/dom/getBoundingClientRect-expected.txt: * fast/dom/getClientRects-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41811 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=24670 Add tests for XHR progress events during cross-origin requests. * http/tests/xmlhttprequest/redirect-cross-origin-2-expected.txt: Added. * http/tests/xmlhttprequest/redirect-cross-origin-2.html: Added. * http/tests/xmlhttprequest/redirect-cross-origin-expected.txt: Added. * http/tests/xmlhttprequest/redirect-cross-origin-post-expected.txt: Added. * http/tests/xmlhttprequest/redirect-cross-origin-post-sync-expected.txt: Added. * http/tests/xmlhttprequest/redirect-cross-origin-post-sync.html: Added. * http/tests/xmlhttprequest/redirect-cross-origin-post.html: Added. * http/tests/xmlhttprequest/redirect-cross-origin-sync-double-expected.txt: Added. * http/tests/xmlhttprequest/redirect-cross-origin-sync-double.html: Added. * http/tests/xmlhttprequest/redirect-cross-origin-sync-expected.txt: Added. * http/tests/xmlhttprequest/redirect-cross-origin-sync.html: Added. * http/tests/xmlhttprequest/redirect-cross-origin.html: Added. * http/tests/xmlhttprequest/simple-cross-origin-denied-events-expected.txt: Added. * http/tests/xmlhttprequest/simple-cross-origin-denied-events-post-expected.txt: Added. * http/tests/xmlhttprequest/simple-cross-origin-denied-events-post-sync-expected.txt: Added. * http/tests/xmlhttprequest/simple-cross-origin-denied-events-post-sync.html: Added. * http/tests/xmlhttprequest/simple-cross-origin-denied-events-post.html: Added. * http/tests/xmlhttprequest/simple-cross-origin-denied-events-sync-expected.txt: Added. * http/tests/xmlhttprequest/simple-cross-origin-denied-events-sync.html: Added. * http/tests/xmlhttprequest/simple-cross-origin-denied-events.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41810 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-