- 30 Nov, 2009 1 commit
-
-
ossy@webkit.org authored
* platform/qt/Skipped: - fast/dom/Window/window-postmessage-clone.html added - inspector/elements-img-tooltip.html added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51482 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 29 Nov, 2009 16 commits
-
-
bfulgham@webkit.org authored
Correct draw signature used in ImageCairoWin.cpp. * platform/graphics/win/ImageCairoWin.cpp: (WebCore::BitmapImage::getHBITMAPOfSize): (WebCore::BitmapImage::drawFrameMatchingSourceSize): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51481 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
oliver@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=31955 Reviewed by Sam Weinig. Update SerializedScriptValue to include support for File objects in the serialized object graph. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51480 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Add Erik Arvidsson to committers.py since by r51326 he clear has commit rights. * Scripts/modules/committers.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51479 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simon.fraser@apple.com authored
Rubber-stamped by Eric Seidel. Fix up some compositing layout tests. * compositing/layers-inside-overflow-scroll.html: * compositing/self-painting-layers.html: Use the 'loadeddata' event, instead of 'load', to know when the video loads. * platform/mac/compositing/repaint/content-into-overflow-expected.checksum: * platform/mac/compositing/repaint/content-into-overflow-expected.png: * platform/mac/compositing/repaint/overflow-into-content-expected.checksum: * platform/mac/compositing/repaint/overflow-into-content-expected.png: * platform/mac/compositing/self-painting-layers-expected.checksum: * platform/mac/compositing/self-painting-layers-expected.png: Update with correct pixel results. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51478 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
No review, just adding missing svn property. Set svn:executable property on new scripts. These were added by commit-queue commits, but the executable property was lost due to a bug in svn-apply: https://bugs.webkit.org/show_bug.cgi?id=27204 * Scripts/update-webkit-chromium: Added property svn:executable. * Scripts/validate-committer-lists: Added property svn:executable. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51477 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simon.fraser@apple.com authored
Reviewed by Dan Bernstein. Optimize the hierarchy rebuilding of compositing layers https://bugs.webkit.org/show_bug.cgi?id=31879 When updating the compositing layer hierarchy, instead of removing all child layers and then re-adding them one by one, build a vector of child layers, and set them in one go. * platform/graphics/GraphicsLayer.h: * platform/graphics/GraphicsLayer.cpp: (WebCore::GraphicsLayer::setChildren): New method that takes a Vector of child GraphicsLayers. * platform/graphics/mac/GraphicsLayerCA.h: Override setChildren(). * platform/graphics/win/GraphicsLayerCACF.h: Ditto. * platform/graphics/mac/GraphicsLayerCA.mm: (WebCore::GraphicsLayerCA::setChildren): Implement setChildren() to set the bit that notes that sublayers changed. * platform/graphics/win/GraphicsLayerCACF.cpp: (WebCore::GraphicsLayerCACF::setChildren): Implement setChildren() to udpate sublayers, with a note that this is not efficient. * rendering/RenderLayerCompositor.h: * rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::updateCompositingLayers): When updating compositing layers, use the faster updateLayerTreeGeometry() if we know that no layer hierarchy changes are needed, and, at the root, use the vector returned from rebuildCompositingLayerTree() to attach the root layer. (WebCore::RenderLayerCompositor::rebuildCompositingLayerTree): Changed to collect child layers into Vectors of GraphicsLayers, which can be set as layer children in one go. (WebCore::RenderLayerCompositor::updateLayerTreeGeometry): Split out from rebuildCompositingLayerTree() for simplicity, and called when we just need to update layer geometry, without doing any reparenting. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51476 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Adam Barth. Need a way to validate that committers.py includes all committers/reviewers https://bugs.webkit.org/show_bug.cgi?id=30970 Add a script which knows how to compare our public committer/reviewer lists and show discrepancies between them. Validates mailing lists vs. committers.py: - committers.py committers missing from webkit-committers@lists - webkit-committers@lists members missing from committers.py - committers.py reviewers missing from webkit-reviewers@lists - webkit-reviewers@lists members missing from committers.py - webkit-reviewers@lists members missing from committers.py reviewer list Validates committers.py vs. trunk/ SVN history: - committers who have not committed in over a year - SVN committers missing from committers.py - committers.py members who have no record in SVN. All of these lists still show "false positives" until a few more committers.py updates are made, like: https://bugs.webkit.org/show_bug.cgi?id=31366 * Scripts/validate-committer-lists: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51475 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Reviewed by Adam Barth. https://bugs.webkit.org/show_bug.cgi?id=31971 Updated comment to reflect latest XSSAuditor bindings. No functionality was changed. So, no new tests. * page/XSSAuditor.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51474 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Reviewed by Eric Seidel. https://bugs.webkit.org/show_bug.cgi?id=31969 Removes unnecessary #include files. No functionality was changed. So, no new tests. * css/CSSComputedStyleDeclaration.cpp: Removed include CachedImage.h, and Pair.h * css/CSSCursorImageValue.cpp: Removed include RenderStyle.h * css/CSSFontFaceSrcValue.cpp: Removed include Node.h * css/CSSFontSelector.cpp: Removed include NodeList.h * css/CSSGradientValue.cpp: Removed include GraphicsContext.h, ImageBuffer.h * css/CSSImageValue.cpp: Removed include RenderStyle.h * css/CSSImportRule.cpp: Removed include MediaList.h * css/CSSMutableStyleDeclaration.cpp: Removed include CSSProperty.h * css/CSSRule.cpp: Removed include CSSStyleSheet.h * css/CSSStyleSelector.cpp: Removed include CSSFontFace.h, CSSFontFaceSource.h, and CSSProperty.h * page/EventSource.h: Removed include EventListener.h git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51473 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Reviewed by Eric Seidel. https://bugs.webkit.org/show_bug.cgi?id=31965 Removed #include KeyframeList.h from CSSStyleSelector.h. Instead, forward declared it. As a side effect, we need to #include KeyframeList.h in RenderLayerBacking.cpp. No functionality was changed. So, no new tests. * css/CSSStyleSelector.cpp: * css/CSSStyleSelector.h: Removed #include KeyframeList.h * rendering/RenderLayerBacking.cpp: Added #include KeyframeList.h git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51472 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Eric Seidel. Test using Id as index of node list. https://bugs.webkit.org/show_bug.cgi?id=31428 * fast/dom/Element/id-in-node-list-index01-expected.txt: Added. * fast/dom/Element/id-in-node-list-index01.html: Added. 2009-11-29 Shu Chang <Chang.Shu@nokia.com> Reviewed by Eric Seidel. Continue to search for matching node in the case where multiple nodes have the same id. https://bugs.webkit.org/show_bug.cgi?id=31428 Test: fast/dom/Element/id-in-node-list-index01.html * dom/DynamicNodeList.cpp: (WebCore::DynamicNodeList::itemWithName): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51471 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Reviewed by Eric Seidel. https://bugs.webkit.org/show_bug.cgi?id=31966 Removed #include RenderStyle.h from file KeyframeAnimation.h. Instead, forward declared it. No functionality was changed. So, no new tests. * page/animation/KeyframeAnimation.cpp: * page/animation/KeyframeAnimation.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51470 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Unreviewed, fix change log entry date. For some reason, bugzilla-tool did not update the date in the change log entry for my last commit (r51468). So, this commit fixes the date of that entry. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51469 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Reviewed by Dan Bernstein. https://bugs.webkit.org/show_bug.cgi?id=31964 Removed #include StringImpl, StyleImage. Instead, forward declared them. Also, we can substitute #include <wtf/PassRefPtr.h> for #include PlatformString.h, since it seems we only really used it to include PassRefPtr.h. No functionality was changed. So, no new tests. * rendering/style/ContentData.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51468 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Eric Seidel. [Qt] Mac build has JIT disabled https://bugs.webkit.org/show_bug.cgi?id=31828 * wtf/Platform.h: Enable JIT for Qt Mac builds git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51467 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Eric Seidel. Allow custom memory allocation control for classes of the rendering and storage directory in WebCore https://bugs.webkit.org/show_bug.cgi?id=31906 Inherits the following classes from Noncopyable because these are instantiated by 'new' and no need to be copyable: class/struct name - instantiated at: WebCore/'location' class SQLTransactionClient - storage/DatabaseThread.cpp:45 class SQLTransactionCoordinator - storage/DatabaseThread.cpp:46 class OriginUsageRecord - storage/OriginQuotaManager.cpp:66 class DatabaseTracker - storage/DatabaseTracker.cpp:62 class ScrollbarTheme - (its child class) rendering/RenderScrollbarTheme.cpp:35 class RenderSelectionInfoBase - (its child class) rendering/RenderView.cpp:310 class RenderOverflow - rendering/RenderBox.cpp:2846 Inherits the following classes from FastAllocBase because these are instantiated by 'new': struct FillLayer - css/CSSStyleSelector.cpp:197 struct ShadowData - rendering/style/ShadowData.cpp:35 class CounterContent - css/CSSStyleSelector.cpp:4111 * platform/ScrollbarTheme.h: * rendering/RenderOverflow.h: * rendering/RenderSelectionInfo.h: * rendering/style/CounterContent.h: * rendering/style/FillLayer.h: * rendering/style/ShadowData.h: * storage/DatabaseTracker.h: * storage/OriginUsageRecord.h: * storage/SQLTransactionClient.h: * storage/SQLTransactionCoordinator.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51466 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 28 Nov, 2009 10 commits
-
-
abarth@webkit.org authored
Reviewed by Eric Seidel. [bzt] style-queue sends ~100 requests to QueueStatusServer every 5 minutes https://bugs.webkit.org/show_bug.cgi?id=31950 Now we cache the last status that we get back from QueueStatusServer. Eventually we'll have to do something more fancy if we want to support a "try again" button on QueueStatusServer, but we can cross that bridge when we come to it. * Scripts/modules/patchcollection.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51465 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. StyleQueue scans ~100 bug pages every 5 minutes https://bugs.webkit.org/show_bug.cgi?id=31947 Instead of getting the pending-review attachment ids by scanning each bug (which results in a network request), we should just get them all from webkit.org/pending-review in one shot. * Scripts/modules/bugzilla.py: * Scripts/modules/bugzilla_unittest.py: * Scripts/modules/commands/queries.py: * Scripts/modules/commands/queries_unittest.py: * Scripts/modules/commands/queues.py: * Scripts/modules/mock_bugzillatool.py: * Scripts/modules/patchcollection.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51464 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. [bzt] CC webkit-bot-watchers whenever the bots touch bugs https://bugs.webkit.org/show_bug.cgi?id=31952 The mailing list is open for anyone to subscribe. * Scripts/modules/bugzilla.py: * Scripts/modules/commands/queues.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51463 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. [bzt] style-queue should report style errors to bugzilla https://bugs.webkit.org/show_bug.cgi?id=31945 Currently, we're just logging the style errors locally. With this patch we'll actually log the errors to bugzilla. Note: I plan to run with the "local-only" logging during development. * Scripts/modules/commands/queues.py: * Scripts/modules/scm.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51462 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Eric Seidel. Apply workaround for the limitation of VirtualFree with MEM_RELEASE to all ports running on Windows https://bugs.webkit.org/show_bug.cgi?id=31943 * runtime/MarkStack.h: (JSC::MarkStack::MarkStackArray::shrinkAllocation): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51461 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. [bzt] style-queue shouldn't reject patches from the commit-queue https://bugs.webkit.org/show_bug.cgi?id=31944 Currently the style-queue subprocess gets confused and thinks its the commit-queue. If the patch has an error, it rejects it from the commit-queue. Instead, we should have style-queue specific logic. This patch doesn't add that logic, but it gives us a callback we can use to add that logic. * Scripts/modules/buildsteps.py: * Scripts/modules/commands/queues.py: * Scripts/modules/landingsequence.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51460 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Dimitri Glazkov. [Chromium] Sify compose button alerts error https://bugs.webkit.org/show_bug.cgi?id=31394 Test: http/tests/security/calling-versus-current.html We're supposed to use the calling context for security checks. In JSC land, this is the lexicalGlobalObject. * bindings/v8/V8Proxy.cpp: (WebCore::V8Proxy::canAccessPrivate): 2009-11-28 Adam Barth <abarth@webkit.org> Reviewed by Dimitri Glazkov. [Chromium] Sify compose button alerts error https://bugs.webkit.org/show_bug.cgi?id=31394 Test that we're using the calling security context in a simple case. * http/tests/security/calling-versus-current-expected.txt: Added. * http/tests/security/calling-versus-current.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51459 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Kenneth Rohde Christiansen. [Qt] SoftwareInputPanelRequest event sent when clicking in newly loaded page https://bugs.webkit.org/show_bug.cgi?id=31401 Don't set the event unless there is a focused node we can use for editing afterwards. * Api/qwebpage.cpp: (QWebPagePrivate::handleSoftwareInputPanel): * tests/qwebpage/tst_qwebpage.cpp: (tst_QWebPage::inputMethods): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51458 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zoltan@webkit.org authored
Reviewed by Gavin Barraclough. https://bugs.webkit.org/show_bug.cgi?id=31930 Seems a typo. We don't need ~270k memory to determine the vptrs. * runtime/JSGlobalData.cpp: (JSC::VPtrSet::VPtrSet): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51457 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
yurys@chromium.org authored
Reviewed by Pavel Feldman. Add separate method for pause command to WebDevToolsAgent and WebDevToolsFrontendClient interfaces so that pause command can be processed on the IO thread. https://bugs.webkit.org/show_bug.cgi?id=31934 * public/WebDevToolsAgent.h: * public/WebDevToolsFrontendClient.h: (WebKit::WebDevToolsFrontendClient::sendDebuggerCommandToAgent): (WebKit::WebDevToolsFrontendClient::sendDebuggerPauseScript): (WebKit::WebDevToolsFrontendClient::activateWindow): (WebKit::WebDevToolsFrontendClient::closeWindow): (WebKit::WebDevToolsFrontendClient::dockWindow): (WebKit::WebDevToolsFrontendClient::undockWindow): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51456 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 27 Nov, 2009 13 commits
-
-
hamaji@chromium.org authored
Unreviewed Chromium build fix introduced by r51428. [Chromium] Ignore line-height CSS property for PushButton https://bugs.webkit.org/show_bug.cgi?id=31712 * rendering/RenderThemeChromiumSkia.cpp: (WebCore::RenderThemeChromiumSkia::adjustButtonStyle): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51455 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hamaji@chromium.org authored
Unreviewed Chromium test fix by reverting r51413. [v8] Do not check the thread when accessing DOMDataStore https://bugs.webkit.org/show_bug.cgi?id=31877 * bindings/v8/V8DOMMap.cpp: (WebCore::getDOMNodeMap): (WebCore::getDOMObjectMap): (WebCore::getActiveDOMObjectMap): (WebCore::getDOMSVGElementInstanceMap): (WebCore::getDOMSVGObjectWithContextMap): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51454 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Unreviewed, comment fix. Corrected misspelling of the word "implemented". * inspector/front-end/InjectedScriptAccess.js: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51453 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
laszlo.1.gombos@nokia.com authored
Unreviewed. Move GOwnPtr* from wtf to wtf/gtk https://bugs.webkit.org/show_bug.cgi?id=31793 Build fix for chromium after r51423. Exclude gtk directory from chromium build. * JavaScriptCore.gyp/JavaScriptCore.gyp: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51452 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Rename CommitQueueStatus to QueueStatusServer to allow for more queues. * CommitQueueStatus: Removed. * CommitQueueStatus/app.yaml: Removed. * CommitQueueStatus/filters: Removed. * CommitQueueStatus/filters/__init__.py: Removed. * CommitQueueStatus/filters/webkit_extras.py: Removed. * CommitQueueStatus/index.html: Removed. * CommitQueueStatus/index.yaml: Removed. * CommitQueueStatus/queue_status.py: Removed. * CommitQueueStatus/stylesheets: Removed. * CommitQueueStatus/stylesheets/main.css: Removed. * CommitQueueStatus/update_status.html: Removed. * QueueStatusServer: Copied from WebKitTools/CommitQueueStatus. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51451 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. style-queue should only process each patch once https://bugs.webkit.org/show_bug.cgi?id=31939 Actually address reviewer comments! * Scripts/bugzilla-tool: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51450 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. [bzt] style-queue fails to apply a bunch of patches for no reason https://bugs.webkit.org/show_bug.cgi?id=31942 By passing --non-interactive to check-style, we convince check-style to pass --force to svn-apply, which lets it apply more patches. * Scripts/modules/commands/queues.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51449 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. [bzt] Support --status-host in style-queue https://bugs.webkit.org/show_bug.cgi?id=31941 * Scripts/modules/commands/queues.py: * Scripts/modules/statusbot.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51448 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. style-queue should only process each patch once https://bugs.webkit.org/show_bug.cgi?id=31939 Before processing a patch, the try-queues now ask the web service whether they have already processed the patch. This is an initial cut of this functionality. I expect we're make it richer over time. * Scripts/bugzilla-tool: * Scripts/modules/commands/queues.py: * Scripts/modules/patchcollection.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51447 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. PatchStatus does not return status https://bugs.webkit.org/show_bug.cgi?id=31938 We need to parse attachment_id as an int. Otherwise, we can't find anything in the datastore. * CommitQueueStatus/queue_status.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51446 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Reviewed by Adam Barth. https://bugs.webkit.org/show_bug.cgi?id=31940 Makes the error messages more descriptive when we refuse to load an object/embed or refuse to load from the document base URL. * page/XSSAuditor.cpp: (WebCore::XSSAuditor::canLoadObject): Changed console message to be more descriptive. (WebCore::XSSAuditor::canSetBaseElementURL): Ditto. 2009-11-27 Daniel Bates <dbates@webkit.org> Reviewed by Adam Barth. https://bugs.webkit.org/show_bug.cgi?id=31940 Rebased results because of new error messages. * http/tests/security/xssAuditor/base-href-control-char-expected.txt: * http/tests/security/xssAuditor/base-href-expected.txt: * http/tests/security/xssAuditor/base-href-null-char-expected.txt: * http/tests/security/xssAuditor/base-href-scheme-relative-expected.txt: * http/tests/security/xssAuditor/embed-tag-control-char-expected.txt: * http/tests/security/xssAuditor/embed-tag-expected.txt: * http/tests/security/xssAuditor/embed-tag-javascript-url-expected.txt: * http/tests/security/xssAuditor/embed-tag-null-char-expected.txt: * http/tests/security/xssAuditor/object-embed-tag-control-char-expected.txt: * http/tests/security/xssAuditor/object-embed-tag-expected.txt: * http/tests/security/xssAuditor/object-embed-tag-null-char-expected.txt: * http/tests/security/xssAuditor/object-src-inject-expected.txt: * http/tests/security/xssAuditor/object-tag-expected.txt: * http/tests/security/xssAuditor/object-tag-javascript-url-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51445 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric@webkit.org authored
Reviewed by Eric Seidel. Make commit-queue status not throw an exception where there is not status https://bugs.webkit.org/show_bug.cgi?id=31936 We need to actually fetch the results of the query to see what's in the datastore. * CommitQueueStatus/queue_status.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51444 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
Reviewed by Eric Seidel. [bzt] unit test ApplyPatches and ApplyAttachment https://bugs.webkit.org/show_bug.cgi?id=31935 * Scripts/modules/commands/download.py: * Scripts/modules/commands/download_unittest.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51443 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-