WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 84010
[GTK] atk/textChangedNotifications API test fails
https://bugs.webkit.org/show_bug.cgi?id=84010
Summary
[GTK] atk/textChangedNotifications API test fails
Philippe Normand
Reported
2012-04-16 00:21:49 PDT
First failing build is
http://build.webkit.org/builders/GTK%20Linux%2064-bit%20Release/builds/22284
I suspect
http://trac.webkit.org/changeset/114220
might be culprit. I'll skip this test for now.
Attachments
Patch proposal
(3.71 KB, patch)
2012-04-16 07:32 PDT
,
Mario Sanchez Prada
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Mario Sanchez Prada
Comment 1
2012-04-16 07:32:45 PDT
Created
attachment 137346
[details]
Patch proposal It is segfaulting in WebCore::Editor, at Source/WebCore/editing/Editor.cpp:920. See the snippet: bool Editor::insertTextWithoutSendingTextEvent(const String& text, bool selectInsertedText, TextEvent* triggeringEvent) { [...] if (selection.isContentEditable()) { if (Node* selectionStart = selection.start().deprecatedNode()) { RefPtr<Document> document = selectionStart->document(); // Insert the text if (triggeringEvent->isDictation()) <--- SEGV here, triggeringEvent might be NULL (see check in line below, in the else branch) DictationCommand::insertText(document.get(), text, triggeringEvent->dictationAlternatives(), selection); else { TypingCommand::Options options = 0; if (selectInsertedText) options |= TypingCommand::SelectInsertedText; if (autocorrectionWasApplied) options |= TypingCommand::RetainAutocorrectionIndicator; TypingCommand::insertText(document.get(), text, selection, options, triggeringEvent && triggeringEvent->isComposition() ? TypingCommand::TextCompositionConfirm : TypingCommand::TextCompositionNone); } [...] } So, the attached patch would fix the issue.
Martin Robinson
Comment 2
2012-04-16 08:21:31 PDT
Is Dictation a new feature? I'm surprised it isn't behind a compile-time flag.
Jia Pu
Comment 3
2012-04-16 18:23:22 PDT
(In reply to
comment #2
)
> Is Dictation a new feature? I'm surprised it isn't behind a compile-time flag.
Currently this is used only by OS X. I can certainly put it behind compile time flag, if that's desirable.
Jia Pu
Comment 4
2012-04-17 10:26:49 PDT
It seems
http://trac.webkit.org/changeset/114311
has already fixed this.
Martin Robinson
Comment 5
2012-04-17 10:34:17 PDT
We just need to unskip the test now.
Mario Sanchez Prada
Comment 6
2012-04-18 00:37:49 PDT
Committed
r114490
: <
http://trac.webkit.org/changeset/114490
>
Eric Seidel (no email)
Comment 7
2012-04-19 15:56:50 PDT
Comment on
attachment 137346
[details]
Patch proposal Cleared review? from
attachment 137346
[details]
so that this bug does not appear in
http://webkit.org/pending-review
. If you would like this patch reviewed, please attach it to a new bug (or re-open this bug before marking it for review again).
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug