⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Timeline



Jan 2, 2008:

11:50 PM Changeset in webkit [29117] by weinig@apple.com
  • 2 edits in trunk/WebKitTools
  • Scripts/do-webcore-rename: Yet more renaming ideas.
11:44 PM Changeset in webkit [29116] by Darin Adler
  • 6 edits in trunk/WebCore
  • touched some files to try to get the Windows buildbot building again
11:37 PM Changeset in webkit [29115] by Darin Adler
  • 1 edit in trunk/WebKitTools/Scripts/do-webcore-rename

Oops, fix another.

11:37 PM Changeset in webkit [29114] by Darin Adler
  • 1 edit in trunk/WebKitTools/Scripts/do-webcore-rename

Oops, fix one.

11:36 PM Changeset in webkit [29113] by Darin Adler
  • 2 edits in trunk/WebKitTools
  • Scripts/do-webcore-rename: More renaming ideas. (Maciej, please merge yours with mine.)
10:47 PM Changeset in webkit [29112] by mitz@apple.com
  • 2 edits in trunk/WebCore

Reviewed by Sam Weinig.

  • fix small caps rendering

Covered by an existing test,

  • platform/graphics/win/FontDataWin.cpp: (WebCore::FontData::smallCapsFontData):
10:45 PM Changeset in webkit [29111] by mrowe@apple.com
  • 5 edits in branches/Safari-3-branch

Merge r27238 to fix a hang during the layout tests.

10:39 PM Changeset in webkit [29110] by Darin Adler
  • 4 edits
    3 adds in trunk

JavaScriptCore:

Reviewed by Geoff.

Test: fast/regex/early-acid3-86.html

The problem was with the cutoff point between backreferences and octal
escape sequences. We need to determine the cutoff point by counting the
total number of capturing brackets, which requires an extra pass through
the expression when compiling it.

  • pcre/pcre_compile.cpp: (CompileData::CompileData): Added numCapturingBrackets. Removed some unused fields. (compileBranch): Use numCapturingBrackets when calling checkEscape. (calculateCompiledPatternLength): Use numCapturingBrackets when calling checkEscape, and also store the bracket count at the end of the compile. (jsRegExpCompile): Call calculateCompiledPatternLength twice -- once to count the number of brackets and then a second time to calculate the length.

LayoutTests:

Reviewed by Geoff.

  • fast/regex/early-acid3-86-expected.txt: Added.
  • fast/regex/early-acid3-86.html: Added.
  • fast/regex/resources/early-acid3-86.js: Added.
  • fast/regex/test1-expected.txt: Updated for a few cases where we now fail. But these "failures" represent us replacing PCRE behavior with semantics that are correct for JavaScript regular expressions.
10:11 PM Changeset in webkit [29109] by Darin Adler
  • 2 edits in trunk/JavaScriptCore

Reviewed and landed by Darin.

  • kjs/nodes.cpp: (KJS::DoWhileNode::execute): Added a missing return.
7:56 PM Changeset in webkit [29108] by Antti Koivisto
  • 4 edits in trunk/WebCore

Reviewed by Oliver.

Calculate video position and size within the renderer box in WebCore. This
way the aspect ratio calculation is not needed in each MediaPlayer implementation.


This fixes video aspect ratio on Windows.


Covered by an existing pixel test.

  • platform/graphics/mac/MediaPlayerPrivateQTKit.mm: (WebCore::MediaPlayerPrivate::createQTMovieView):
  • rendering/RenderVideo.cpp: (WebCore::RenderVideo::videoBox): (WebCore::RenderVideo::paintReplaced): (WebCore::RenderVideo::updatePlayer):
  • rendering/RenderVideo.h:
6:33 PM Changeset in webkit [29107] by adachan@apple.com
  • 2 edits in trunk/WebCore

Fix windows build.

  • WebCore.vcproj/WebCore.vcproj:
6:09 PM Changeset in webkit [29106] by sullivan@apple.com
  • 2 edits in trunk/WebCore

Reviewed by Dan Bernstein


  • fixed <rdar://problem/5579010> REGRESSION: Safari inserts newlines in tab names when U+2028 is present
  • loader/DocumentLoader.cpp: (WebCore::canonicalizedTitle): in the code that replaces control characters with white space, also replace the unicode line separator and paragraph separator characters
6:07 PM Changeset in webkit [29105] by zecke@webkit.org
  • 3 edits in trunk

2008-01-02 Holger Hans Peter Freyther <zecke@selfish.org>

Rubber stamped by Alp.

Remove GDK_MULTIHEAD_SAFE and GTK_MULTIHEAD_SAFE because they break
the build. At least people doing a debug build on Ubuntu Hardy will see
the breakage. I was asked to leave the flags inside the files to ease future
debugging.

  • GNUmakefile.am:
  • WebKit.pri:
6:05 PM Changeset in webkit [29104] by zecke@webkit.org
  • 2 edits in trunk/WebKit/gtk

2008-01-02 Holger Hans Peter Freyther <zecke@selfish.org>

Rubber stamped by Darin.

Coding Style fix. Do not use an else because we use a return in the
if branch.

  • WebView/webkitwebview.cpp:
6:00 PM Changeset in webkit [29103] by Darin Adler
  • 2 edits in trunk/WebCore
  • fix buffer overruns seen on buildbot
  • platform/text/StringImpl.cpp: (WebCore::countCharacter): Added this. (WebCore::StringImpl::toCoordsArray): Use countCharacter instead of incorrect find expression. (WebCore::StringImpl::toLengthArray): Ditto. (WebCore::StringImpl::replace): Added assertions.
5:29 PM Changeset in webkit [29102] by alice.liu@apple.com
  • 2 edits in trunk/LayoutTests
  • platform/win/Skipped: removing a fixed test this was fixed with r28836 but was left behind on the skipped list
5:25 PM Changeset in webkit [29101] by Darin Adler
  • 24 edits
    8 adds in trunk

WebCore:

Reviewed by Maciej.

Tests: dom/html/level2/html/HTMLCollection07.html

dom/html/level2/html/HTMLCollection08.html
dom/html/level2/xhtml/HTMLCollection07.xhtml
dom/html/level2/xhtml/HTMLCollection08.xhtml
fast/dom/HTMLTableElement/early-acid3-65-excerpt.html
fast/dom/HTMLTableElement/early-acid3-66-excerpt.html

  • GNUmakefile.am: Added HTMLTableRowsCollection.
  • WebCore.pro: Ditto.
  • WebCore.vcproj/WebCore.vcproj: Ditto.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • WebCoreSources.bkl: Ditto.
  • dom/XMLTokenizer.cpp: Took out stray include.
  • html/HTMLCollection.cpp: (WebCore::HTMLCollection::itemAfter): Removed all the table rows code, since we now use a separate class for that collection. Also got rid of the distinct types for custom collections that don't need them (use Other for both).
  • html/HTMLCollection.h: Also made firstItem non-virtual because it doesn't need to be virtual.
  • html/HTMLFormCollection.cpp: (WebCore::HTMLFormCollection::HTMLFormCollection): Use Other instead of FormElements for the HTMLCollection type.
  • html/HTMLTableElement.cpp: (WebCore::HTMLTableElement::HTMLTableElement): Eliminated m_head, m_foot, m_firstBody, and m_caption. (WebCore::HTMLTableElement::caption): Added non-inline version. Finds the caption rather than keeping a pointer to it. (WebCore::HTMLTableElement::setCaption): Rewrote. (WebCore::HTMLTableElement::tHead): Ditto. (WebCore::HTMLTableElement::setTHead): Ditto. (WebCore::HTMLTableElement::tFoot): Ditto. (WebCore::HTMLTableElement::setTFoot): Ditto. (WebCore::HTMLTableElement::createTHead): Ditto. (WebCore::HTMLTableElement::deleteTHead): Ditto. (WebCore::HTMLTableElement::createTFoot): Ditto. (WebCore::HTMLTableElement::deleteTFoot): Ditto. (WebCore::HTMLTableElement::createCaption): Ditto. (WebCore::HTMLTableElement::deleteCaption): Ditto. (WebCore::HTMLTableElement::lastBody): Added. (WebCore::HTMLTableElement::insertRow): Rewrote to use a loop based on code in HTMLTableRowsCollection. This is different from the old code mainly in how it handles rows outside any section. (WebCore::HTMLTableElement::deleteRow): Ditto. (WebCore::HTMLTableElement::addChild): Removed code to set the various members. Keeping pointers to these was a possible source of serious bugs too, including crashes with stale pointers, although I didn't write any test cases to prove those bugs existed. (WebCore::HTMLTableElement::parseMappedAttribute): Changed the rules code to visit all cells, not just the cells of the first body. I believe this fixed rendering on some table tests. I think the code visits too many cells and also the use of recursion is overkill, but I didn't try to fix that. (WebCore::HTMLTableElement::rows): Changed to use the new HTMLTableRowsCollection.
  • html/HTMLTableElement.h: Changed functions to return PassRefPtr, which can be important if strange things like DOM mutation events take things ot of the tree before they are safely referenced by JavaScript wrappers. Also changed functions to take PassRefPtr and added exceptions. Removed unneeded firstTBody and setTBody functions and childrenChanged function override, as well as unused Rules and Frame enums. Removed m_head, m_foot, m_firstBody, and m_caption, and added lastBody function. Removed unneeded friend declaration for HTMLTableCellElement.
  • html/HTMLTableElement.idl: Allow the setteres for caption, tHead, and tFoot to raise exceptions.
  • html/HTMLTableRowsCollection.cpp: Added. Implements the HTML 5 rule for which rows are in the collection in which order.
  • html/HTMLTableRowsCollection.h: Added.
  • loader/FTPDirectoryDocument.cpp: (WebCore::FTPDirectoryTokenizer::appendEntry): Use the standard insertRow function instead of coming up with our own way of inserting a row. Simplifies things -- we can remove the code to create a tbody element.

LayoutTests:

Reviewed by Maciej.

  • fast/dom/HTMLTableElement/early-acid3-65-excerpt-expected.txt: Added.
  • fast/dom/HTMLTableElement/early-acid3-65-excerpt.html: Added.
  • fast/dom/HTMLTableElement/early-acid3-66-excerpt-expected.txt: Added.
  • fast/dom/HTMLTableElement/early-acid3-66-excerpt.html: Added.
  • fast/dom/HTMLTableElement/resources/early-acid3-65-excerpt.js: Added.
  • fast/dom/HTMLTableElement/resources/early-acid3-66-excerpt.js: Added.
  • dom/html/level2/html/HTMLCollection07-expected.txt: Updated to reflect success.
  • dom/html/level2/html/HTMLCollection08-expected.txt: Updated to reflect success.
  • dom/xhtml/level2/html/HTMLCollection07-expected.txt: Updated to reflect success.
  • dom/xhtml/level2/html/HTMLCollection08-expected.txt: Updated to reflect success.
  • fast/dom/HTMLTableElement/resources/rows.js: Changed to expect HTML 5 behavior for rows outside table sections.
  • fast/dom/HTMLTableElement/rows-expected.txt: Updated.
  • platform/mac/tables/mozilla/bugs/bug30418-expected.checksum: Updated to reflect better results.
  • platform/mac/tables/mozilla/bugs/bug30418-expected.png: Ditto.
  • platform/mac/tables/mozilla/bugs/bug30418-expected.txt: Ditto.
5:11 PM Changeset in webkit [29100] by Darin Adler
  • 2 edits in trunk/JavaScriptCore
  • try to fix Qt build
  • wtf/unicode/qt4/UnicodeQt4.h: (WTF::Unicode::foldCase): Add some missing const.
4:58 PM Changeset in webkit [29099] by Darin Adler
  • 4 edits in trunk/WebCore

Reviewed by Alice and Tim.

  • try to fix GTK and Qt builds
  • platform/win/ScrollViewWin.cpp: (WebCore::ScrollView::scroll): Improve logic slightly for the case of vertical scrolling when there's no vertical scroll bar.
  • platform/gtk/ScrollViewGtk.cpp: (WebCore::ScrollView::scroll): Copy the code from Windows. Maybe this should be factored differently.
  • platform/qt/ScrollViewQt.cpp: (WebCore::ScrollView::scroll): Ditto.
4:32 PM Changeset in webkit [29098] by Darin Adler
  • 32 edits in trunk/WebCore

Reviewed by Anders.

Also eliminated use of const StringImpl. Since StringImpl is immutable there
is no distinction between a const and non-const one at the moment.

  • WebCore.base.exp: Updated.
  • css/CSSHelper.cpp: (WebCore::parseURL): Make String directly, not by making a StringImpl.
  • dom/Attr.cpp: (WebCore::Attr::createTextChild): Convert AtomicString to String with domString, not via StringImpl. (WebCore::Attr::setValue): Remove unneed call to impl() when passing a String to a function that takes a String.
  • dom/CDATASection.cpp: Removed unused constructor. (WebCore::CDATASection::cloneNode): Added a now-needed .get(). (WebCore::CDATASection::createNew): Changed function to take a PassRefPtr.
  • dom/CDATASection.h:
  • dom/CharacterData.cpp: (WebCore::CharacterData::CharacterData): Removed unneeded initialization and ref() now that the string is a RefPtr. Also updated to not call "new StringImpl". (WebCore::CharacterData::~CharacterData): Removed unneeded deref() since it's a RefPtr. (WebCore::CharacterData::setData): More of that. (WebCore::CharacterData::substringData): Ditto. (WebCore::CharacterData::appendData): Ditto. (WebCore::CharacterData::insertData): Ditto. (WebCore::CharacterData::deleteData): Ditto. (WebCore::CharacterData::replaceData): Ditto. (WebCore::CharacterData::nodeValue): Ditto. (WebCore::CharacterData::dispatchModifiedEvent): Ditto. (WebCore::CharacterData::dump): Ditto.
  • dom/CharacterData.h: Changed to use a RefPtr. I could have used a String instead, but since String adds extra branches to handle 0, I figured it was more conservative to just use RefPtr. Later it would be good to figure out which is preferred style and be more consistent. Maybe we'll phase out StringImpl, or maybe we'll go the other way and use it more since it can be more efficient.
  • dom/DOMImplementation.cpp: (WebCore::addString): Changed set to use String rather than StringImpl. (WebCore::isSVG10Feature): Ditto. (WebCore::isSVG11Feature): Ditto. (WebCore::DOMImplementation::createDocument): Replaced custom code to find a colon with a call to String::find.
  • dom/Range.cpp: (WebCore::Range::insertNode): Updated since the result of splitText is now a PassRefPtr.
  • dom/Text.cpp: (WebCore::Text::splitText): Updated since str is now a RefPtr. Also made the result of this function be a PassRefPtr. (WebCore::Text::createRenderer): Ditto. (WebCore::Text::createNew): Made the parameter and result both be PassRefPtr.
  • dom/Text.h:
  • html/HTMLElement.cpp: (WebCore::HTMLElement::nodeName): Use String::upper.
  • html/HTMLInputElement.cpp: (WebCore::numGraphemeClusters): Remove now-unneeded const. (WebCore::numCharactersInGraphemeClusters): Ditto.
  • html/HTMLTokenizer.cpp: (WebCore::HTMLTokenizer::processToken): Updated for function name change.
  • platform/text/AtomicString.cpp: (WebCore::CStringTranslator::translate): Updated since there is no longer a constructor that takes a string.
  • platform/text/PlatformString.h: Added new constructors that take PassRefPtr and RefPtr. Removed misleading comment.
  • platform/text/String.cpp: (WebCore::String::String): Changed to use StringImpl::create, which handles the empty string automatically. (WebCore::String::append): Ditto. (WebCore::String::charactersWithNullTermination): Similar. (WebCore::String::format): Ditto.
  • platform/text/StringHash.h: Took out unneeded const.
  • platform/text/StringImpl.cpp: (WebCore::deleteUCharVector): Changed to take a const pointer since the buffers are now const UChar buffers. (WebCore::StringImpl::StringImpl): Removed some constructors. Got rid of the separate init functions. The constructors are now private and used only in the create functions and one or two other places. (WebCore::StringImpl::containsOnlyWhitespace): Removed now-meaningless const. (WebCore::StringImpl::substring): Ditto. Also changed return value to be a PassRefPtr. (WebCore::StringImpl::characterStartingAt): Ditto. (WebCore::StringImpl::toLength): Ditto. (WebCore::StringImpl::toCoordsArray): Ditto. (WebCore::StringImpl::toLengthArray): Ditto. (WebCore::StringImpl::isLower): Ditto. (WebCore::StringImpl::lower): Ditto. Changed to use Vector and adopt so we don't have to use new directly here. Makes empty string handling more consistent. (WebCore::StringImpl::upper): Ditto. (WebCore::StringImpl::secure): Ditto. (WebCore::StringImpl::foldCase): Ditto. (WebCore::StringImpl::stripWhiteSpace): Ditto. (WebCore::StringImpl::simplifyWhiteSpace): Ditto. (WebCore::StringImpl::capitalize): Ditto. (WebCore::StringImpl::toInt): Removed now-meaningless const. (WebCore::StringImpl::toInt64): Ditto. (WebCore::StringImpl::toUInt64): Ditto. (WebCore::StringImpl::toDouble): Ditto. (WebCore::StringImpl::toFloat): Ditto. (WebCore::StringImpl::find): Ditto. (WebCore::StringImpl::reverseFind): Ditto. (WebCore::StringImpl::endsWith): Ditto. (WebCore::StringImpl::replace): Ditto. (WebCore::equal): Ditto. (WebCore::equalIgnoringCase): Ditto. (WebCore::StringImpl::ascii): Ditto. (WebCore::StringImpl::defaultWritingDirection): Ditto. (WebCore::StringImpl::createStrippingNullCharacters): Ditto. (WebCore::StringImpl::adopt): Added special case so this uses the shared empty string like other functions. Also optimized the common case where the vector happens to already have the right size so we don't do a fastRealloc at all in those cases. (WebCore::StringImpl::create): Added. These are now the public functions for creating new StringImpl objects. They all implement the shared empty string. (WebCore::StringImpl::createWithTerminatingNullCharacter):
  • platform/text/StringImpl.h:
  • platform/text/cf/StringCF.cpp: (WebCore::String::String): Use StringImpl::create instead of new StringImpl.
  • platform/text/cf/StringImplCF.cpp: (WebCore::StringImpl::createCFString): Removed now-obsolete const.
  • platform/text/mac/StringImplMac.mm: (WebCore::StringImpl::operator NSString *): Ditto.
  • platform/text/mac/StringMac.mm: (WebCore::String::String): Use StringImpl::create instead of new StringImpl.
  • platform/text/qt/StringQt.cpp: (WebCore::String::String): Ditto.
  • platform/text/wx/StringWx.cpp: (WebCore::String::String): Ditto.
  • rendering/RenderBR.cpp: (WebCore::RenderBR::RenderBR): Ditto.
  • rendering/RenderSVGInlineText.cpp: (WebCore::RenderSVGInlineText::RenderSVGInlineText): Use PassRefPtr.
  • rendering/RenderSVGInlineText.h:
  • rendering/RenderText.cpp: (WebCore::charactersAreAllASCII): Removed now-unneeded const.
  • rendering/RenderTextFragment.cpp: (WebCore::RenderTextFragment::originalText): Use RefPtr.
4:07 PM Changeset in webkit [29097] by timothy@apple.com
  • 2 edits in trunk/WebCore

Reviewed by Oliver Hunt.

<rdar://problem/5618086> WebInspector does not expand the DOM tree after being closed

Closing the Web Inspector causes the DOM tree outline to be torn down, clearing the
internal element lookup tables. The represented DOM node object still holds the identifier
it was assigned, and a later call to findTreeElement will use that original identifier
against a cleared lookup table. In that case we need to fallback on DOM ancestor lookup.

  • page/inspector/treeoutline.js: (TreeOutline.prototype.findTreeElement): If the DOM node already had a treeElementIdentifier, but the TreeOutline no longer has the element in the _knownTreeElements list do an ancestor lookup instead of an early return.
3:53 PM Changeset in webkit [29096] by alice.liu@apple.com
  • 6 edits
    1 add in trunk

JavaScriptCore:

Reviewed by Sam Weinig.

need to export ASCIICType.h for use in DRT

  • JavaScriptCore.vcproj/WTF/WTF.vcproj:
  • wtf/ASCIICType.h: (WTF::isASCIIUpper):

WebKitTools:

Reviewed by Sam Weinig.

fixing assertion hit with editing/selection/move-begin-end.html

  • DumpRenderTree/ForwardingHeaders/wtf/ASCIICType.h: Added.
  • DumpRenderTree/win/DumpRenderTree.vcproj:
  • DumpRenderTree/win/EventSender.cpp: (keyDownCallback): using isupper will cause an assertion for inputs outside of ascii range. use isASCIIUpper instead.
3:46 PM Changeset in webkit [29095] by Darin Adler
  • 2 edits in trunk/WebKitTools
  • Scripts/do-webcore-rename: Some more name change plans.
2:58 PM Changeset in webkit [29094] by alice.liu@apple.com
  • 6 edits
    4 adds in trunk

WebCore:

Reviewed by Maciej.

Fixed <rdar://5283861> (problems scrolling in gmail message content area)

  • platform/ScrollView.h:
  • platform/win/ScrollViewWin.cpp: (WebCore::ScrollView::scroll): Changed return value to bool to reflect success of scroll attempt

WebKit/win:

Reviewed by Maciej.

Fixed <rdar://5283861> (problems scrolling in gmail message content area)

  • WebView.cpp: (WebView::keyDown): bubble scrolling from a key event

LayoutTests:

Reviewed by Maciej.

Added test for <rdar://5283861> (problems scrolling in gmail message content area)

  • fast/frames/iframe-scroll-page-up-down-expected.txt: Added.
  • fast/frames/iframe-scroll-page-up-down.html: Added.
  • fast/frames/resources/iframe-scroll-page-up-down-1.html: Added.
  • fast/frames/resources/iframe-scroll-page-up-down-2.html: Added.
2:37 PM Changeset in webkit [29093] by alice.liu@apple.com
  • 3 edits in trunk/WebKitTools

Reviewed by Maciej.

Added handling for page up and page down in EventSender

  • DumpRenderTree/mac/EventSendingController.mm: (-[EventSendingController keyDown:withModifiers:]):
  • DumpRenderTree/win/EventSender.cpp: (keyDownCallback):
2:23 PM Changeset in webkit [29092] by Adam Roben
  • 2 edits in trunk/LayoutTests
  • platform/win/Skipped: Added some more failures.
1:32 PM Changeset in webkit [29091] by weinig@apple.com
  • 4 edits in trunk/JavaScriptCore

Reviewed by Beth Dakin.

Cleanup error_object.h/cpp.

  • kjs/JSGlobalObject.cpp: (KJS::JSGlobalObject::reset):
  • kjs/error_object.cpp: (KJS::): (KJS::ErrorInstance::ErrorInstance): (KJS::ErrorPrototype::ErrorPrototype): (KJS::ErrorProtoFuncToString::ErrorProtoFuncToString): (KJS::ErrorProtoFuncToString::callAsFunction): (KJS::ErrorObjectImp::ErrorObjectImp): (KJS::ErrorObjectImp::implementsConstruct): (KJS::ErrorObjectImp::construct): (KJS::ErrorObjectImp::callAsFunction): (KJS::NativeErrorPrototype::NativeErrorPrototype): (KJS::NativeErrorImp::NativeErrorImp): (KJS::NativeErrorImp::implementsConstruct): (KJS::NativeErrorImp::construct): (KJS::NativeErrorImp::callAsFunction): (KJS::NativeErrorImp::mark):
  • kjs/error_object.h: (KJS::ErrorInstance::classInfo): (KJS::NativeErrorImp::classInfo):
1:07 PM Changeset in webkit [29090] by ap@webkit.org
  • 2 edits in trunk/WebCore

Fixed a typo (pointed out in review, but I somehow missed it at first).

  • editing/EditorCommand.cpp: (WebCore::executeDelete):
12:24 PM Changeset in webkit [29089] by Adam Roben
  • 3 edits in trunk/LayoutTests

Get the Windows bots closer to green

  • platform/win/Skipped: Added some new failures.
  • platform/win/fast/dom/Window/window-properties-expected.txt: Updated these results.
11:14 AM Changeset in webkit [29088] by ap@webkit.org
  • 2 edits in trunk/WebKitTools

Reviewed by Darin.

Fix fast/events/arrow-keys-on-body.html for real.

  • DumpRenderTree/win/EventSender.cpp: (keyDownCallback): Pass proper keyData for WM_KEYUP, too.
10:31 AM Changeset in webkit [29087] by ap@webkit.org
  • 15 edits
    6 adds in trunk

Reviewed by Darin.

Resolved several FIXMEs in EditorCommand.
Made recently added commands hidden from JS again.
Removed BackwardDelete implementation, which used to be dead code, but got exposed now.

Tests: editing/execCommand/delete-no-scroll.html

editing/execCommand/forward-delete-no-scroll.html
editing/execCommand/insert-line-break-no-scroll.html

9:34 AM Changeset in webkit [29086] by ap@webkit.org
  • 4 edits
    27 adds in trunk

Reviewed by Darin.

http://bugs.webkit.org/show_bug.cgi?id=14555
action=mailto + method=get - The generated mailto URI is incorrect and the hvalues are encoded twice

http://bugs.webkit.org/show_bug.cgi?id=14774
Submitted data only includes first input item

Reworked encoding of mailto URLs to match other browsers.
Moved most of related logic from FrameLoader::submitForm() to HTMLFormElement::submit().

Tests: fast/forms/mailto/advanced-get.html

fast/forms/mailto/advanced-put.html
fast/forms/mailto/get-multiple-items-text-plain.html
fast/forms/mailto/get-multiple-items-x-www-form-urlencoded.html
fast/forms/mailto/get-multiple-items.html
fast/forms/mailto/get-non-ascii.html
fast/forms/mailto/get-non-ascii-text-plain.html
fast/forms/mailto/get-overwrite-query.html
fast/forms/mailto/post-append-query.html
fast/forms/mailto/post-multiple-items-multipart-form-data.html
fast/forms/mailto/post-multiple-items-text-plain.html
fast/forms/mailto/post-multiple-items-x-www-form-urlencoded.html
fast/forms/mailto/post-multiple-items.html

  • html/HTMLFormElement.cpp: (WebCore::HTMLFormElement::submit):
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::submitForm):
8:01 AM Changeset in webkit [29085] by mrowe@apple.com
  • 2 edits in trunk/WebCore

Autotools build fix.

7:14 AM Changeset in webkit [29084] by mrowe@apple.com
  • 2 edits in trunk/WebCore

Add missing dependencies to some GNUmakefile.am rules.

Rubber-stamped by Alp Toker.

6:42 AM Changeset in webkit [29083] by mrowe@apple.com
  • 2 edits in trunk/JavaScriptCore

Autotools fix. Add missing dependency on grammar.y.

Rubber-stamped by Alp Toker.

6:42 AM Changeset in webkit [29082] by mrowe@apple.com
  • 2 edits in trunk/WebCore

Autotools build fix. Make can expand $@ to any of the targets for the rule,
while we always want to use the name of the .cpp file as the output file.

Reviewed by Alp Toker.

4:56 AM Changeset in webkit [29081] by alp@webkit.org
  • 2 edits in trunk/WebKitTools

2008-01-02 Luca Bruno <lethalman88@gmail.com>

Reviewed by Darin.

http://bugs.webkit.org/show_bug.cgi?id=16674
[GTK] run-launcher sets wrong LD_LIBRARY_PATH

  • Scripts/run-launcher:
3:33 AM QtWebKitContrib edited by Simon Hausmann
(diff)
2:25 AM Changeset in webkit [29080] by alp@webkit.org
  • 7 edits in trunk

2008-01-02 Luca Bruno <lethalman88@gmail.com>

Reviewed by Alp Toker.

http://bugs.webkit.org/show_bug.cgi?id=16115
[GTK] ContextMenu and ContextMenuItem lacks an implementation

Add context menu support.

Based on a patch by Holger Freyther.

1:07 AM Changeset in webkit [29079] by alp@webkit.org
  • 2 edits in trunk/WebCore

2008-01-02 Alp Toker <alp@atoker.com>

GTK+ autotools build fix. Track changes in r29073.

  • GNUmakefile.am:

Jan 1, 2008:

11:03 PM Changeset in webkit [29078] by Darin Adler
  • 2 edits in trunk/WebCore
  • fix release build
  • bindings/js/kjs_binding.cpp: (KJS::setDOMException): Initialize to avoid uninitialized variable warning. Removed default so we get a warning if there's a missing case.
10:59 PM Changeset in webkit [29077] by ddkilzer@apple.com
  • 5 edits in trunk/WebCore

Scripting MIME Types application/ecmascript, application/javascript not viewable
<http://bugs.webkit.org/show_bug.cgi?id=11063>

Reviewed by Darin.

This patch consolidates the list of acceptable MIME types for JavaScript
source into the MIMETypeRegistry class, and replaces checks for these
types with a call to MIMETypeRegistry::isSupportedJavaScriptMIMEType().

No tests added since viewing JavaScript source is not testable.

  • dom/DOMImplementation.cpp: (WebCore::DOMImplementation::isTextMIMEType): Use MIMETypeRegistry::isSupportedJavaScriptMIMEType() instead of a single hard-coded MIME type, "application/x-javascript".
  • html/HTMLScriptElement.cpp: (WebCore::HTMLScriptElement::shouldExecuteAsJavaScript): Moved list of JavaScript MIME types from here to MIMETypeRegistry::initialiseSupportedJavaScriptMIMETypes().
  • platform/MIMETypeRegistry.cpp: (WebCore::initialiseSupportedJavaScriptMIMETypes): Added. List of MIME types came from HTMLScriptElement::shouldExecuteAsJavaScript(). (WebCore::initialiseSupportedNonImageMimeTypes): Remove single hard-coded MIME type, "application/x-javascript", from the list. (WebCore::initialiseMIMETypeRegistry): Initialise supportedJavaScriptMIMETypes, then pre-populate supportedNonImageMIMETypes with values in supportedJavaScriptMIMETypes. (WebCore::MIMETypeRegistry::isSupportedJavaScriptMIMEType): Added.
  • platform/MIMETypeRegistry.h: Added isSupportedJavaScriptMIMEType().
10:54 PM Changeset in webkit [29076] by weinig@apple.com
  • 1 edit in trunk/WebCore/WebCoreSources.bkl

Fix wx build

10:44 PM Changeset in webkit [29075] by Darin Adler
  • 6 edits in trunk

JavaScriptCore:

Reviewed by Eric.

Test: fast/js/kde/parse.html

  • kjs/lexer.cpp: (KJS::Lexer::lex): Added additional states to distinguish Unicode escapes at the start of identifiers from ones inside identifiers. Rejected characters that don't pass the isIdentStart and isIdentPart tests. (KJS::Lexer::convertUnicode): Removed incorrect FIXME comment.
  • kjs/lexer.h: Added new states to distinguish \u escapes at the start of identifiers from \u escapes inside identifiers.

LayoutTests:

Reviewed by Eric.

  • fast/js/kde/parse-expected.txt: Updated.
  • fast/js/kde/resources/parse.js: Added tests that cover both the non-ASCII characters themselves and the same characters parsed as \u sequences.
10:38 PM Changeset in webkit [29074] by Darin Adler
  • 1 edit in trunk/WebKit/win/ForEachCoClass.cpp

Fix a stray executable bit.

9:46 PM Changeset in webkit [29073] by weinig@apple.com
  • 31 edits
    15 copies
    1 move
    6 adds in trunk

WebCore:

Reviewed by Darin.

Patch for http://bugs.webkit.org/show_bug.cgi?id=16691
Use real JS objects for the rest of the DOMExceptions (EventException, RangeException, etc)

  • Create JS objects for all the different types of exceptions, each with there own prototype and constructor.
  • Abstract all the logic and storage for exception classes in to an ExceptionBase class.
  • Move specialized ExceptionCodes into the exception classes. (ie. the EventExceptionCode enum is now in EventException).

Tests: fast/dom/DOMException/EventException.html

fast/dom/DOMException/RangeException.html
fast/dom/DOMException/XPathException.html
http/tests/xmlhttprequest/XMLHttpRequestException.html
svg/custom/SVGException.html

  • DerivedSources.make:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • WebCoreSources.bkl:
  • bindings/js/JSSVGMatrixCustom.cpp: (WebCore::JSSVGMatrix::inverse): (WebCore::JSSVGMatrix::rotateFromVector):
  • bindings/js/kjs_binding.cpp: (KJS::setDOMException):
  • bindings/scripts/CodeGeneratorJS.pm: Use the constant values defined in the IDL as the ObjC bindings do.
  • bindings/scripts/CodeGeneratorObjC.pm:
  • dom/DOMCoreException.cpp: Removed.
  • dom/DOMCoreException.h: (WebCore::DOMCoreException::DOMCoreException):
  • dom/DOMCoreException.idl:
  • dom/Event.h:
  • dom/EventException.h: Copied from WebCore/dom/DOMCoreException.h. (WebCore::EventException::EventException): (WebCore::EventException::):
  • dom/EventException.idl: Copied from WebCore/dom/DOMCoreException.idl.
  • dom/EventTargetNode.cpp: (WebCore::EventTargetNode::dispatchEvent):
  • dom/ExceptionBase.cpp: Copied from WebCore/dom/DOMCoreException.cpp. (WebCore::ExceptionBase::ExceptionBase): (WebCore::ExceptionBase::toString):
  • dom/ExceptionBase.h: Copied from WebCore/dom/DOMCoreException.h. (WebCore::ExceptionBase::code):
  • dom/ExceptionCode.cpp: (WebCore::getExceptionCodeDescription):
  • dom/ExceptionCode.h: (WebCore::):
  • dom/Range.cpp: (WebCore::Range::insertNode): (WebCore::Range::checkNodeWOffset): (WebCore::Range::checkNodeBA): (WebCore::Range::selectNode): (WebCore::Range::selectNodeContents): (WebCore::Range::surroundContents):
  • dom/RangeException.h: (WebCore::RangeException::RangeException): (WebCore::RangeException::):
  • dom/RangeException.idl:
  • page/DOMWindow.idl:
  • svg/SVGColor.cpp: (WebCore::SVGColor::setRGBColor):
  • svg/SVGException.h: (WebCore::SVGException::SVGException): (WebCore::SVGException::):
  • svg/SVGException.idl:
  • svg/SVGLocatable.cpp: (WebCore::SVGLocatable::getTransformToElement):
  • xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::dispatchEvent): (WebCore::XMLHttpRequest::open): (WebCore::XMLHttpRequest::send):
  • xml/XMLHttpRequest.h:
  • xml/XMLHttpRequestException.h: Copied from WebCore/dom/DOMCoreException.h. (WebCore::XMLHttpRequestException::XMLHttpRequestException): (WebCore::XMLHttpRequestException::):
  • xml/XMLHttpRequestException.idl: Copied from WebCore/dom/DOMCoreException.idl.
  • xml/XPathEvaluator.h:
  • xml/XPathException.h: Copied from WebCore/dom/DOMCoreException.h. (WebCore::XPathException::XPathException): (WebCore::XPathException::):
  • xml/XPathException.idl: Copied from WebCore/dom/DOMCoreException.idl.
  • xml/XPathParser.cpp: (WebCore::XPath::Parser::parseStatement):
  • xml/XPathResult.cpp: (WebCore::XPathResult::convertTo): (WebCore::XPathResult::numberValue): (WebCore::XPathResult::stringValue): (WebCore::XPathResult::booleanValue): (WebCore::XPathResult::singleNodeValue): (WebCore::XPathResult::snapshotLength): (WebCore::XPathResult::iterateNext): (WebCore::XPathResult::snapshotItem):

LayoutTests:

Reviewed by Darin.

Tests for http://bugs.webkit.org/show_bug.cgi?id=16691
Use real JS objects for the rest of the DOMExceptions (EventException, RangeException, etc)

  • fast/dom/DOMException/EventException-expected.txt: Added.
  • fast/dom/DOMException/EventException.html: Copied from LayoutTests/fast/dom/DOMException/prototype-object.html.
  • fast/dom/DOMException/RangeException-expected.txt: Added.
  • fast/dom/DOMException/RangeException.html: Copied from LayoutTests/fast/dom/DOMException/prototype-object.html.
  • fast/dom/DOMException/XPathException-expected.txt: Added.
  • fast/dom/DOMException/XPathException.html: Copied from LayoutTests/fast/dom/DOMException/prototype-object.html.
  • fast/dom/DOMException/resources/EventException.js: Copied from LayoutTests/fast/dom/DOMException/resources/prototype-object.js.
  • fast/dom/DOMException/resources/RangeException.js: Copied from LayoutTests/fast/dom/DOMException/resources/prototype-object.js.
  • fast/dom/DOMException/resources/XPathException.js: Copied from LayoutTests/fast/dom/DOMException/resources/prototype-object.js.
  • fast/dom/Window/window-properties-expected.txt:
  • http/tests/xmlhttprequest/XMLHttpRequestException-expected.txt: Added.
  • http/tests/xmlhttprequest/XMLHttpRequestException.html: Added.
  • svg/custom/SVGException-expected.txt: Added.
  • svg/custom/SVGException.html: Copied from LayoutTests/fast/dom/DOMException/prototype-object.html.
  • svg/custom/resources/SVGException.js: Copied from LayoutTests/fast/dom/DOMException/resources/prototype-object.js.
4:38 PM Changeset in webkit [29072] by ddkilzer@apple.com
  • 2 edits in trunk/WebKit/mac

Reviewed by Dan.

  • DefaultDelegates/WebDefaultPolicyDelegate.m: Check return value of -[NSFileManager fileExistsAtPath:isDirectory:] before using the value of isDirectory.
12:44 PM Changeset in webkit [29071] by weinig@apple.com
  • 2 edits in trunk/WebCore

Remove JSDomExceptionConstructor.lut.h from clean step
as it no longer exists.

  • GNUmakefile.am:
12:42 PM Changeset in webkit [29070] by mitz@apple.com
  • 2 edits in trunk/WebCore
  • Windows build fix
  • WebCore.vcproj/WebCore.vcproj:
11:52 AM Changeset in webkit [29069] by pewtermoose@webkit.org
  • 3 edits in trunk/WebKit/win

Attempt to fix the Windows bots until they can get the Windows SDK installed.

11:47 AM Changeset in webkit [29068] by Darin Adler
  • 4 edits in trunk/JavaScriptCore
  • rolled scope chain optimization out; it was breaking the world
11:35 AM Changeset in webkit [29067] by Darin Adler
  • 13 edits in trunk/JavaScriptCore

Reviewed by Geoff.

Also included one other speed-up -- remove the call to reserveCapacity from
FunctionBodyNode::processDeclarations in all but the most unusual cases.

Together these make SunSpider 1.016x as fast.

  • JavaScriptCore.exp: Updated.
  • kjs/ExecState.cpp: (KJS::globalEmptyList): Added. Called only when creating global ExecState instances. (KJS::ExecState::ExecState): Broke constructor up into three separate functions, for the three separate node types. Also went through each of the three and streamlined as much as possible, removing dead code. This prevents us from having to access the global in the function body version of the constructor.
  • kjs/ExecState.h: Added emptyList(). Replaced the constructor with a set of three that are specific to the different node types that can create new execution state objects.
  • kjs/array_object.cpp: (KJS::ArrayProtoFuncToLocaleString::callAsFunction): Use exec->emptyList() instead of List::empty(). (KJS::ArrayProtoFuncConcat::callAsFunction): Ditto. (KJS::ArrayProtoFuncSlice::callAsFunction): Ditto. (KJS::ArrayProtoFuncSplice::callAsFunction): Ditto. (KJS::ArrayProtoFuncFilter::callAsFunction): Ditto.
  • kjs/function.cpp: (KJS::FunctionImp::callAsFunction): Updated to call new ExecState constructor. (KJS::GlobalFuncImp::callAsFunction): Ditto (for eval).
  • kjs/function_object.cpp: (FunctionObjectImp::construct): Use exec->emptyList() instead of List::empty().
  • kjs/list.cpp: Removed List::empty.
  • kjs/list.h: Ditto.
  • kjs/nodes.cpp: (KJS::ElementNode::evaluate): Use exec->emptyList() instead of List::empty(). (KJS::ArrayNode::evaluate): Ditto. (KJS::ObjectLiteralNode::evaluate): Ditto. (KJS::PropertyListNode::evaluate): Ditto. (KJS::FunctionBodyNode::processDeclarations): Another speed-up. Check the capacity before calling reserveCapacity, because it doesn't get inlined the local storage vector is almost always big enough -- saving the function call overhead is a big deal. (KJS::FuncDeclNode::makeFunction): Use exec->emptyList() instead of List::empty(). (KJS::FuncExprNode::evaluate): Ditto.
  • kjs/object.cpp: (KJS::tryGetAndCallProperty): Ditto.
  • kjs/property_slot.cpp: (KJS::PropertySlot::functionGetter): Ditto.
  • kjs/string_object.cpp: (KJS::StringProtoFuncSplit::callAsFunction): Ditto.
11:16 AM Changeset in webkit [29066] by Darin Adler
  • 4 edits in trunk

JavaScriptCore:

Reviewed by Geoff.

Fixes 34 failing test cases in the fast/regex/test1.html test.

Restored the stack which prevents infinite loops for brackets that match the empty
string; it had been removed as an optimization.

Unfortunately, restoring this stack causes the regular expression test in SunSpider
to be 1.095x as slow and the overall test to be 1.004x as slow. Maybe we can find
a correct optimization to restore the speed!

It's possible the original change was on the right track but just off by one.

  • pcre/pcre_exec.cpp: Add back eptrblock, but name it BracketChainNode. (MatchStack::pushNewFrame): Add back the logic needed here. (startNewGroup): Ditto. (match): Ditto.

LayoutTests:

Reviewed by Geoff.

  • fast/regex/test1-expected.txt: Update results changed by restoring the logic to avoid failing on infinite repeats of brackets that match the empty string.
11:13 AM Changeset in webkit [29065] by Darin Adler
  • 4 edits in trunk/JavaScriptCore

Reviewed by Geoff.

This gives a 1.019x speedup on SunSpider.

After doing this, I realized this probably will be obsolete when the optimization
to avoid creating an activation object is done. When we do that one we should check
if rolling this out will speed things up, since this does add overhead at the time
you copy the scope chain.

  • kjs/object.h: Removed the ScopeChain::release function. It was marked inline, and called in exactly one place, so moved it there. No idea why it was in this header file!
  • kjs/scope_chain.cpp: Removed the overload of the ScopeChain::push function that takes another ScopeChain. It was unused. I think we used it over in WebCore at one point, but not any more.
  • kjs/scope_chain.h: Changed ScopeChainNode into a struct rather than a class, got rid of its constructor so we can have one that's uninitialized, and moved the refCount into a derived struct, ScopeChainHeapNode. Made _node mutable so it can be changed in the moveToHeap function. Changed the copy constructor and assignment operator to call moveToHeap, since the top node can't be shared when it's embedded in another ScopeChain object. Updated functions as needed to handle the case where the first object isn't on the heap or to add casts for cases where it's guaranteed to be. Changed the push function to always put the new node into the ScopeChain object; it will get put onto the heap when needed later.
10:57 AM Changeset in webkit [29064] by ggaren@apple.com
  • 2 edits in trunk/JavaScriptCore

Reviewed by Darin Adler.


Fixed slight logic error in reserveCapacity, where we would reallocate
the storage buffer unnecessarily.

  • wtf/Vector.h: (WTF::::reserveCapacity): No need to grow the buffer if newCapacity is equal to capacity().
10:14 AM BuildingGtk edited by sylvain.pasche@gmail.com
link to ApplicationsGtk (diff)
10:12 AM ApplicationsGtk edited by sylvain.pasche@gmail.com
added PyWebKitGtk (diff)
10:05 AM Changeset in webkit [29063] by weinig@apple.com
  • 2 edits in trunk/WebCore

Try again to fix the builds

  • DerivedSources.make:
9:45 AM Changeset in webkit [29062] by weinig@apple.com
  • 4 edits in trunk/WebCore

Fix non-mac builds.

  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCoreSources.bkl:
2:40 AM Changeset in webkit [29061] by eric@webkit.org
  • 3 edits
    2 adds in trunk

Reviewed by Alexey.

Don't replace \ with / in data: urls
http://bugs.webkit.org/show_bug.cgi?id=16692

Test: fast/loader/url-data-replace-backslash.html

  • platform/KURL.cpp: (WebCore::KURL::init):
1:05 AM Changeset in webkit [29060] by alp@webkit.org
  • 4 edits in trunk

2008-01-01 Alp Toker <alp@atoker.com>

GTK+ autotools build fix. Track changes in r29051, r29058 and pass the
correct parameter to AM_INIT_AUTOMAKE.

12:43 AM Changeset in webkit [29059] by Darin Adler
  • 6 edits in trunk/JavaScriptCore

Reviewed by Oliver.

Speeds SunSpider up 1.003x. That's a small amount, but measurable.

  • JavaScriptCore.exp: Updated.
  • kjs/Parser.h: (KJS::Parser::parse): Create the node with a static member function named create() instead of using new explicitly.
  • kjs/grammar.y: Changed calls to new FunctionBodyNode to use FunctionBodyNode::create().
  • kjs/nodes.cpp: (KJS::ProgramNode::create): Added. Calls new. (KJS::EvalNode::create): Ditto. (KJS::FunctionBodyNode::create): Ditto, but creates FunctionBodyNodeWithDebuggerHooks when a debugger is present. (KJS::FunctionBodyNode::execute): Removed debugger hooks. (KJS::FunctionBodyNodeWithDebuggerHooks::FunctionBodyNodeWithDebuggerHooks): Added. (KJS::FunctionBodyNodeWithDebuggerHooks::execute): Calls the debugger, then the code, then the debugger again.
  • kjs/nodes.h: Added create functions, made the constructors private and protected.
Note: See TracTimeline for information about the timeline view.