- 13 Jan, 2008 1 commit
-
-
mrowe@apple.com authored
Reviewed by Mark Rowe. Fix http://bugs.webkit.org/show_bug.cgi?id=16852 Fixes leaking of ActivationStackNode objects. * kjs/JSGlobalObject.cpp: (KJS::JSGlobalObject::deleteActivationStack): (KJS::JSGlobalObject::~JSGlobalObject): (KJS::JSGlobalObject::init): (KJS::JSGlobalObject::reset): * kjs/JSGlobalObject.h: git-svn-id: svn://svn.chromium.org/blink/trunk@29443 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
- 12 Jan, 2008 21 commits
-
-
mrowe@apple.com authored
Gtk debug build fix. Reviewed by Mark Rowe. Add plugin logging channel, and use it rather than Win32-specific debugging methods _RPTF1 _RPTF2 and _CRT_WARN. * WebCore.pro: Add plugins directory to DEPENDPATH so dependencies are correctly tracked. * platform/Logging.cpp: * platform/Logging.h: * plugins/PluginDebug.h: git-svn-id: svn://svn.chromium.org/blink/trunk@29442 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mitz@apple.com authored
r29432 disabled document replacement by the JavaScript result in this case. * fast/replaced/image-map-expected.txt: git-svn-id: svn://svn.chromium.org/blink/trunk@29441 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
darin@apple.com authored
* pcre/dftables: Remove reliance on the list form of Perl pipes. git-svn-id: svn://svn.chromium.org/blink/trunk@29440 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
darin@apple.com authored
* kjs/function.cpp: Added include of scope_chain_mark.h. * kjs/scope_chain_mark.h: Added multiple-include guards. git-svn-id: svn://svn.chromium.org/blink/trunk@29439 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mrowe@apple.com authored
git-svn-id: svn://svn.chromium.org/blink/trunk@29438 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mrowe@apple.com authored
Another Windows build fix. * kjs/Activation.h: git-svn-id: svn://svn.chromium.org/blink/trunk@29437 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mrowe@apple.com authored
Attempted Windows build fix. Use struct consistently when forward-declaring ActivationStackNode and StackActivation. * kjs/Activation.h: * kjs/JSGlobalObject.h: git-svn-id: svn://svn.chromium.org/blink/trunk@29436 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mrowe@apple.com authored
Reviewed by Mark Rowe. Fixes leaking of ActivationStackNode objects. * kjs/JSGlobalObject.cpp: (KJS::JSGlobalObject::deleteActivationStack): (KJS::JSGlobalObject::~JSGlobalObject): (KJS::JSGlobalObject::init): (KJS::JSGlobalObject::reset): * kjs/JSGlobalObject.h: git-svn-id: svn://svn.chromium.org/blink/trunk@29435 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
zecke@webkit.org authored
The configuration of Apache2 and installation does not depend on the kernel but on the distribution policy. Make launching of httpd work for Debian derived distributions. git-svn-id: svn://svn.chromium.org/blink/trunk@29434 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mrowe@apple.com authored
Reviewed by Maciej Stachowiak. * DumpRenderTree/mac/LayoutTestControllerMac.mm: Retain string before returning it to match the callers expectations that it can take ownership of the string. git-svn-id: svn://svn.chromium.org/blink/trunk@29433 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mjs@apple.com authored
- more thorough fix for some crashing tests http://bugs.webkit.org/show_bug.cgi?id=16782 * loader/FrameLoader.cpp: (WebCore::FrameLoader::urlSelected): (WebCore::FrameLoader::submitForm): (WebCore::FrameLoader::executeIfJavaScriptURL): * loader/FrameLoader.h: git-svn-id: svn://svn.chromium.org/blink/trunk@29432 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mjs@apple.com authored
Fixes a problem with the ActivationImp tear-off patch (r29425) where some of the calls to JSGlobalObject::tearOffActivation() were using the wrong test to determine whether it should leave a relic behind. * kjs/function.cpp: (KJS::FunctionImp::argumentsGetter): (KJS::ActivationImp::getOwnPropertySlot): git-svn-id: svn://svn.chromium.org/blink/trunk@29431 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mjs@apple.com authored
- fixed <rdar://problem/5556374> REGRESSION: cross-domain error when one URL uses an explicit port number and another doesn't * platform/SecurityOrigin.cpp: (WebCore::isDefaultPortForProtocol): (WebCore::SecurityOrigin::SecurityOrigin): git-svn-id: svn://svn.chromium.org/blink/trunk@29430 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alp@webkit.org authored
Reviewed by Oliver Hunt. Enable FastMalloc by default in GTK+/autotools and add a configure switch. * GNUmakefile.am: * configure.ac: git-svn-id: svn://svn.chromium.org/blink/trunk@29429 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
ggaren@apple.com authored
Reviewed by Oliver Hunt. Fixed <rdar://problem/5665251> REGRESSION (r28880-r28886): Global variable access (16644) This bug was caused by var declarations shadowing built-in properties of the global object. To match Firefox, we've decided that var declarations will never shadow built-in properties of the global object or its prototypes. We used to behave more like IE, which allows shadowing, but walking that line got us into trouble with websites that sent us down the Firefox codepath. * kjs/JSVariableObject.h: (KJS::JSVariableObject::symbolTableGet): New code to support calling hasProperty before the variable object is fully initialized (so you can call it during initialization). * kjs/nodes.cpp:. (KJS::ProgramNode::initializeSymbolTable): Always do a full hasProperty check when looking for duplicates, not getDirect, since it only checks the property map, and not hasOwnProperty, since it doesn't check prototypes. (KJS::EvalNode::processDeclarations): ditto * kjs/property_slot.h: (KJS::PropertySlot::ungettableGetter): Best function name evar. WebCore: Reviewed by Oliver Hunt. Fixed <rdar://problem/5665251> REGRESSION (r28880-r28886): Global variable access (16644) Removed the ReadOnly bit from some properties, to match Firefox. Also removed status-related setters, to allow using their names as variable names. * bindings/scripts/CodeGeneratorJS.pm: Added support for properties that are one-way across domain boundaries, to match Firefox. * bindings/js/kjs_window.cpp: Changed ReadOnly declarations to match FF. * bindings/scripts/CodeGeneratorJS.pm: Don't use JSObject:: because we don't know that JSObject is our base class. * page/DOMWindow.idl: Replaced lots of readonly declarations with [Replaceable] declarations. * page/DOMWindow.h: Removed interfaces for setting status text via the DOM. (They were getting in the way of, e.g., "var status" declarations.) By default, IE 7 and FF disable these interfaces in order to defend against phishing attacks that try to spoof domain names in the statusbar. * page/DOMWindow.cpp: LayoutTests: Reviewed by Oliver Hunt. Fixed <rdar://problem/5665251> REGRESSION (r28880-r28886): Global variable access (16644) Added a test. Updated other tests to match new behavior. * fast/js/var-declarations-shadowing-expected.txt: Added. * fast/js/var-declarations-shadowing.html: Added. * fast/dom/HTMLScriptElement/script-load-events.html: Changed this test a bit because the original design made it hard to understand why it was failing. * fast/dom/HTMLScriptElement/script-load-events-expected.txt: * fast/dom/Window/get-set-properties.html: Changed this test to expect our new behavior, which matches Firefox. * fast/dom/Window/get-set-properties-expected.txt: * fast/dom/Window/window-property-shadowing.html: Removed some cases that differed from Firefox. * fast/dom/Window/window-property-shadowing-expected.txt: * http/tests/security/cross-frame-access-put-expected.txt: This test emits more "Unsafe JavaScript attempt" messages now because property sets that used to be prohibited (somewhat accidentally) by the ReadOnly attribute are now prohibited by security checks. git-svn-id: svn://svn.chromium.org/blink/trunk@29428 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mitz@apple.com authored
2008-01-11 Anyang Ren <anyang.ren@gmail.com> Reviewed by Darin Adler. http://bugs.webkit.org/show_bug.cgi?id=15960 The view source mode should skip an empty attribute value only if the attribute name is not followed by an equal sign (=). Test: fast/frames/viewsource-empty-attribute-value.html * html/HTMLViewSourceDocument.cpp: (WebCore::HTMLViewSourceDocument::addViewSourceToken): LayoutTests: 2008-01-11 Anyang Ren <anyang.ren@gmail.com> Reviewed by Darin Adler. Add a new regression test for http://bugs.webkit.org/show_bug.cgi?id=15960 The view source mode should skip an empty attribute value only if the attribute name is not followed by an equal sign (=). * fast/frames/resources/viewsource-frame-1.html: Added. * fast/frames/viewsource-empty-attribute-value-expected.txt: Added. * fast/frames/viewsource-empty-attribute-value.html: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@29427 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alp@webkit.org authored
Reviewed by Alp Toker. [Gtk] Uneven glyph spacing with subpixel antialiasing http://bugs.webkit.org/show_bug.cgi?id=16715 Use cairo font options from the default GDK screen when creating a scaled font. * platform/graphics/gtk/FontPlatformDataGtk.cpp: (WebCore::FontPlatformData::FontPlatformData): git-svn-id: svn://svn.chromium.org/blink/trunk@29426 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mjs@apple.com authored
Reviewed by Maciej. Optimized ActivationImp allocation, so that activation records are now first allocated on an explicitly managed stack and only heap allocated when necessary. Roughly a 5% improvement on SunSpider, and a larger improvement on benchmarks that use more function calls. * JavaScriptCore.xcodeproj/project.pbxproj: * kjs/Activation.h: Added. (KJS::ActivationImp::ActivationData::ActivationData): (KJS::ActivationImp::ActivationImp): (KJS::ActivationImp::classInfo): (KJS::ActivationImp::isActivationObject): (KJS::ActivationImp::isOnStack): (KJS::ActivationImp::d): (KJS::StackActivation::StackActivation): * kjs/ExecState.cpp: (KJS::ExecState::ExecState): (KJS::ExecState::~ExecState): * kjs/ExecState.h: (KJS::ExecState::replaceScopeChainTop): (KJS::ExecState::setActivationObject): (KJS::ExecState::setLocalStorage): * kjs/JSGlobalObject.cpp: (KJS::JSGlobalObject::reset): (KJS::JSGlobalObject::pushActivation): (KJS::JSGlobalObject::checkActivationCount): (KJS::JSGlobalObject::popActivationHelper): (KJS::JSGlobalObject::popActivation): (KJS::JSGlobalObject::tearOffActivation): * kjs/JSGlobalObject.h: * kjs/JSVariableObject.h: (KJS::JSVariableObject::JSVariableObjectData::JSVariableObjectData): (KJS::JSVariableObject::JSVariableObject): * kjs/function.cpp: (KJS::FunctionImp::argumentsGetter): (KJS::ActivationImp::ActivationImp): (KJS::ActivationImp::~ActivationImp): (KJS::ActivationImp::init): (KJS::ActivationImp::getOwnPropertySlot): (KJS::ActivationImp::markHelper): (KJS::ActivationImp::mark): (KJS::ActivationImp::ActivationData::ActivationData): (KJS::GlobalFuncImp::callAsFunction): * kjs/function.h: * kjs/nodes.cpp: (KJS::PostIncResolveNode::evaluate): (KJS::PostDecResolveNode::evaluate): (KJS::PreIncResolveNode::evaluate): (KJS::PreDecResolveNode::evaluate): (KJS::ReadModifyResolveNode::evaluate): (KJS::AssignResolveNode::evaluate): (KJS::WithNode::execute): (KJS::TryNode::execute): (KJS::FunctionBodyNode::processDeclarations): (KJS::FuncExprNode::evaluate): * kjs/object.h: * kjs/scope_chain.h: (KJS::ScopeChain::replace): * kjs/scope_chain_mark.h: Added. (KJS::ScopeChain::mark): WebCore: Reviewed by Maciej. Added a new forwarding header, because Activation.h has been separated from function.h * ForwardingHeaders/kjs/Activation.h: Added. LayoutTests: Reviewed by Maciej. Added a test case that came up when developing the ActivationImp tear-off. * fast/js/resources/vardecl-preserve-arguments.js: * fast/js/vardecl-preserve-arguments-expected.txt: git-svn-id: svn://svn.chromium.org/blink/trunk@29425 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
rdar://problem/5541054justin.garcia@apple.com authored
* editing/pasteboard/paste-RTFD.html: Mention the Tiger bug that this demonstrates. * platform/mac-leopard/editing/pasteboard/paste-RTFD-expected.checksum: Added. * platform/mac-leopard/editing/pasteboard/paste-RTFD-expected.png: Added. * platform/mac-leopard/editing/pasteboard/paste-RTFD-expected.txt: Updated expected results to reflect the new info included in the test. * platform/mac/editing/pasteboard/paste-RTFD-expected.checksum: Ditto. * platform/mac/editing/pasteboard/paste-RTFD-expected.png: * platform/mac/editing/pasteboard/paste-RTFD-expected.txt: git-svn-id: svn://svn.chromium.org/blink/trunk@29424 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alp@webkit.org authored
Reviewed by Alp Toker. http://bugs.webkit.org/show_bug.cgi?id=16729 [cURL] Allow multiple files for upload * platform/network/ResourceHandleInternal.h: (WebCore::ResourceHandleInternal::ResourceHandleInternal): * platform/network/curl/ResourceHandleCurl.cpp: (WebCore::ResourceHandleInternal::~ResourceHandleInternal): * platform/network/curl/ResourceHandleManager.cpp: (WebCore::readCallback): added (WebCore::ResourceHandleManager::setupPOST): setup for streaming the POST (WebCore::ResourceHandleManager::startJob): (WebCore::ResourceHandleManager::cancel): revert the previous patch for regression * platform/network/curl/ResourceHandleManager.h: git-svn-id: svn://svn.chromium.org/blink/trunk@29423 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alp@webkit.org authored
Reviewed by Alp Toker. [Gtk] Menu items need underscores http://bugs.webkit.org/show_bug.cgi?id=16817 Add underscores to appropriate menu labels. Also adjust strings slightly. * platform/gtk/ContextMenuItemGtk.cpp: (WebCore::ContextMenuItem::createNativeMenuItem): * platform/gtk/LocalizedStringsGtk.cpp: (WebCore::searchableIndexIntroduction): (WebCore::fileButtonChooseFileLabel): (WebCore::fileButtonNoFileSelectedLabel): (WebCore::contextMenuItemTagOpenLinkInNewWindow): (WebCore::contextMenuItemTagDownloadLinkToDisk): (WebCore::contextMenuItemTagCopyLinkToClipboard): (WebCore::contextMenuItemTagOpenImageInNewWindow): (WebCore::contextMenuItemTagDownloadImageToDisk): (WebCore::contextMenuItemTagCopyImageToClipboard): (WebCore::contextMenuItemTagOpenFrameInNewWindow): (WebCore::contextMenuItemTagCopy): (WebCore::contextMenuItemTagGoBack): (WebCore::contextMenuItemTagGoForward): (WebCore::contextMenuItemTagStop): (WebCore::contextMenuItemTagReload): (WebCore::contextMenuItemTagCut): (WebCore::contextMenuItemTagPaste): (WebCore::contextMenuItemTagIgnoreSpelling): (WebCore::contextMenuItemTagLearnSpelling): (WebCore::contextMenuItemTagSearchWeb): (WebCore::contextMenuItemTagLookUpInDictionary): (WebCore::contextMenuItemTagOpenLink): (WebCore::contextMenuItemTagIgnoreGrammar): (WebCore::contextMenuItemTagSpellingMenu): (WebCore::contextMenuItemTagShowSpellingPanel): (WebCore::contextMenuItemTagCheckSpelling): (WebCore::contextMenuItemTagCheckSpellingWhileTyping): (WebCore::contextMenuItemTagCheckGrammarWithSpelling): (WebCore::contextMenuItemTagFontMenu): (WebCore::contextMenuItemTagBold): (WebCore::contextMenuItemTagItalic): (WebCore::contextMenuItemTagUnderline): (WebCore::contextMenuItemTagOutline): (WebCore::contextMenuItemTagWritingDirectionMenu): (WebCore::contextMenuItemTagDefaultDirection): (WebCore::contextMenuItemTagLeftToRight): (WebCore::contextMenuItemTagRightToLeft): (WebCore::contextMenuItemTagInspectElement): (WebCore::searchMenuClearRecentSearchesText): git-svn-id: svn://svn.chromium.org/blink/trunk@29422 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
- 11 Jan, 2008 18 commits
-
-
rdar://problem/5681557adachan@apple.com authored
<rdar://problem/5681557> On Windows Safari, mouse events are ignored after clicking on link that triggers download Moved the call to cache page from provisionalLoadStarted() to commitProvisionalLoad(), since provisionalLoadStarted() can be called for cases that do not result in a page navigation, for example, when a link to download a file has been clicked. Reviewed by John and Anders. * loader/FrameLoader.cpp: (WebCore::FrameLoader::provisionalLoadStarted): (WebCore::FrameLoader::commitProvisionalLoad): git-svn-id: svn://svn.chromium.org/blink/trunk@29421 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jhoneycutt@apple.com authored
* platform/win/Skipped: Remove a test that was fixed in r29419. git-svn-id: svn://svn.chromium.org/blink/trunk@29420 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jhoneycutt@apple.com authored
Reviewed by Anders. <rdar://problem/5683529> plugins/embed-inside-object.html is timing out/failing Revert to using FrameTree::find() so that frame aliases like "_self" and "_current" are interpreted properly * plugins/win/PluginViewWin.cpp: (WebCore::PluginViewWin::performRequest): (WebCore::PluginViewWin::load): git-svn-id: svn://svn.chromium.org/blink/trunk@29419 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alp@webkit.org authored
Reviewed by Dave Hyatt and Mark Rowe. http://bugs.webkit.org/show_bug.cgi?id=16089 [GTK] Support custom fonts, CachedFont::platformDataFromCustomData() Add support for CSS2 @font-face custom/downloadable fonts to the GTK+ port. * GNUmakefile.am: * WebCore.pro: * loader/CachedFont.cpp: (WebCore::CachedFont::~CachedFont): (WebCore::CachedFont::ensureCustomFontData): (WebCore::CachedFont::platformDataFromCustomData): (WebCore::CachedFont::allReferencesRemoved): * platform/graphics/gtk/FontCustomPlatformData.cpp: Added. (WebCore::FontCustomPlatformData::~FontCustomPlatformData): (WebCore::FontCustomPlatformData::fontPlatformData): (WebCore::releaseData): (WebCore::createFontCustomPlatformData): * platform/graphics/gtk/FontCustomPlatformData.h: Added. (WebCore::FontCustomPlatformData::FontCustomPlatformData): * platform/graphics/gtk/FontPlatformData.h: * platform/graphics/gtk/FontPlatformDataGtk.cpp: (WebCore::FontPlatformData::FontPlatformData): (WebCore::FontPlatformData::init): (WebCore::FontPlatformData::isFixedPitch): * platform/graphics/gtk/SimpleFontDataGtk.cpp: (WebCore::SimpleFontData::platformDestroy): git-svn-id: svn://svn.chromium.org/blink/trunk@29418 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
ap@webkit.org authored
<rdar://problem/5667275> fast/dynamic/layer-hit-test-crash.html is failing * DumpRenderTree/win/DumpRenderTree.cpp: (runTest): Ignore WM_MOUSELEAVE events, as these are only posted because the test window is not a normal visible one, and they confuse drag&drop machinery. git-svn-id: svn://svn.chromium.org/blink/trunk@29417 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
aroben@apple.com authored
This method no longer has any callers. Reviewed by Hyatt. * loader/FrameLoader.h: git-svn-id: svn://svn.chromium.org/blink/trunk@29416 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
aroben@apple.com authored
Fix Bug 16828: WebView never paints if first page load is canceled after being committed but before layout <http://bugs.webkit.org/show_bug.cgi?id=16828> <rdar://5682402> Now that we have 1) a real loader and 2) multiple FrameViews per Frame, we no longer need the hackery we had in our WM_PAINT handler that decided whether or not to paint. We now always want to paint, letting the swapping of FrameViews that happens in transitionToCommittedForNewPage handle which document gets painted. Reviewed by Hyatt. * WebView.cpp: (WebViewWndProc): Removed hackery that decided sometimes not to paint. git-svn-id: svn://svn.chromium.org/blink/trunk@29415 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
antti@apple.com authored
* manual-tests/resources/touch-poster.png: Added. * manual-tests/video-player.html: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@29414 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alice.liu@apple.com authored
git-svn-id: svn://svn.chromium.org/blink/trunk@29413 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
sfalken@apple.com authored
Reviewed by Hyatt. * win/tools: Added. * win/tools/WinTools.make: Added. * win/tools/vsprops: Added. * win/tools/vsprops/common.vsprops: Added. * win/tools/vsprops/debug.vsprops: Added. * win/tools/vsprops/release.vsprops: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@29412 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alice.liu@apple.com authored
git-svn-id: svn://svn.chromium.org/blink/trunk@29411 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
antti@apple.com authored
Reviewed by Adam. Fix <rdar://problem/5682767> Video does not show up in http://webkit.org/blog/140/html5-media-support/ on Windows Take care that GWorld is created and deletes when needed as size or visibility changes. git-svn-id: svn://svn.chromium.org/blink/trunk@29410 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
hyatt@apple.com authored
Fix for bug 11188, setting hspace on a table overrides align=center. Fix align=center to be done using mapped attributes so that it does not get overridden by hspace all the time. Reviewed by mitz Added fast/table/table-hspace-align-center.html * css/html4.css: * html/HTMLTableElement.cpp: (WebCore::HTMLTableElement::parseMappedAttribute): git-svn-id: svn://svn.chromium.org/blink/trunk@29409 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
hyatt@apple.com authored
git-svn-id: svn://svn.chromium.org/blink/trunk@29408 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alice.liu@apple.com authored
git-svn-id: svn://svn.chromium.org/blink/trunk@29407 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
aroben@apple.com authored
Reviewed by Darin. * DumpRenderTree/LayoutTestController.cpp: (pathToLocalResourceCallback): Dont leak the JSStringRef, and make sure not to pass null to JSValueMakeString. * DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::pathToLocalResource): Print an error message if the conversion fails so it's clear what happened. git-svn-id: svn://svn.chromium.org/blink/trunk@29406 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
aroben@apple.com authored
git-svn-id: svn://svn.chromium.org/blink/trunk@29405 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alp@webkit.org authored
Reviewed by Alp Toker. http://bugs.webkit.org/show_bug.cgi?id=16838 [GTK] Bad autotools debug and video options Fix some configure options. * configure.ac: git-svn-id: svn://svn.chromium.org/blink/trunk@29404 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-