Diff
Modified: trunk/LayoutTests/ChangeLog (175465 => 175466)
--- trunk/LayoutTests/ChangeLog 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/LayoutTests/ChangeLog 2014-11-03 08:22:22 UTC (rev 175466)
@@ -1,3 +1,12 @@
+2014-11-03 Sungmann Cho <[email protected]>
+
+ AX: Fix some minor typos related to the word "accessibility".
+ https://bugs.webkit.org/show_bug.cgi?id=138299
+
+ Reviewed by Chris Fleizach.
+
+ * accessibility/aria-link-supports-press.html:
+
2014-11-01 KyungTae Kim <[email protected]>
[CSS] Add tests for :read-only and :read-write
Modified: trunk/LayoutTests/accessibility/aria-link-supports-press.html (175465 => 175466)
--- trunk/LayoutTests/accessibility/aria-link-supports-press.html 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/LayoutTests/accessibility/aria-link-supports-press.html 2014-11-03 08:22:22 UTC (rev 175466)
@@ -8,7 +8,7 @@
<br>
-<span id="result">To run this test outside of DRT, use the Accssibility Inspector to inspect the link above, and make sure AXPressed is listed as a supported action.</span>
+<span id="result">To run this test outside of DRT, use the Accessibility Inspector to inspect the link above, and make sure AXPressed is listed as a supported action.</span>
<script>
if (window.accessibilityController) {
Modified: trunk/Source/WebCore/ChangeLog (175465 => 175466)
--- trunk/Source/WebCore/ChangeLog 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebCore/ChangeLog 2014-11-03 08:22:22 UTC (rev 175466)
@@ -1,3 +1,23 @@
+2014-11-03 Sungmann Cho <[email protected]>
+
+ AX: Fix some minor typos related to the word "accessibility".
+ https://bugs.webkit.org/show_bug.cgi?id=138299
+
+ Reviewed by Chris Fleizach.
+
+ No new tests, no behavior change.
+
+ * accessibility/AccessibilityNodeObject.cpp:
+ (WebCore::shouldUseAccessibilityObjectInnerText):
+ (WebCore::AccessibilityNodeObject::textUnderElement):
+ (WebCore::shouldUseAccessiblityObjectInnerText): Deleted.
+ * accessibility/atk/WebKitAccessibleInterfaceText.cpp:
+ (getRunAttributesFromAccessibilityObject):
+ (webkitAccessibleTextGetRunAttributes):
+ (getRunAttributesFromAccesibilityObject): Deleted.
+ * page/CaptionUserPreferencesMediaAF.cpp:
+ (WebCore::CaptionUserPreferencesMediaAF::textTrackSelectionScore):
+
2014-11-02 Chris Dumez <[email protected]>
Move string-typed properties to the new StyleBuilder
Modified: trunk/Source/WebCore/accessibility/AccessibilityNodeObject.cpp (175465 => 175466)
--- trunk/Source/WebCore/accessibility/AccessibilityNodeObject.cpp 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebCore/accessibility/AccessibilityNodeObject.cpp 2014-11-03 08:22:22 UTC (rev 175466)
@@ -1580,7 +1580,7 @@
// When building the textUnderElement for an object, determine whether or not
// we should include the inner text of this given descendant object or skip it.
-static bool shouldUseAccessiblityObjectInnerText(AccessibilityObject* obj, AccessibilityTextUnderElementMode mode)
+static bool shouldUseAccessibilityObjectInnerText(AccessibilityObject* obj, AccessibilityTextUnderElementMode mode)
{
// Do not use any heuristic if we are explicitly asking to include all the children.
if (mode.childrenInclusion == AccessibilityTextUnderElementMode::TextUnderElementModeIncludeAllChildren)
@@ -1670,7 +1670,7 @@
continue;
}
- if (!shouldUseAccessiblityObjectInnerText(child, mode))
+ if (!shouldUseAccessibilityObjectInnerText(child, mode))
continue;
if (is<AccessibilityNodeObject>(*child)) {
Modified: trunk/Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceText.cpp (175465 => 175466)
--- trunk/Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceText.cpp 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceText.cpp 2014-11-03 08:22:22 UTC (rev 175466)
@@ -318,7 +318,7 @@
return result;
}
-static AtkAttributeSet* getRunAttributesFromAccesibilityObject(const AccessibilityObject* element, gint offset, gint* startOffset, gint* endOffset)
+static AtkAttributeSet* getRunAttributesFromAccessibilityObject(const AccessibilityObject* element, gint offset, gint* startOffset, gint* endOffset)
{
const AccessibilityObject* child = getAccessibilityObjectForOffset(element, offset, startOffset, endOffset);
if (!child) {
@@ -1055,7 +1055,7 @@
if (offset == -1)
offset = atk_text_get_caret_offset(text);
- result = getRunAttributesFromAccesibilityObject(coreObject, offset, startOffset, endOffset);
+ result = getRunAttributesFromAccessibilityObject(coreObject, offset, startOffset, endOffset);
if (*startOffset < 0) {
*startOffset = offset;
Modified: trunk/Source/WebCore/page/CaptionUserPreferencesMediaAF.cpp (175465 => 175466)
--- trunk/Source/WebCore/page/CaptionUserPreferencesMediaAF.cpp 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebCore/page/CaptionUserPreferencesMediaAF.cpp 2014-11-03 08:22:22 UTC (rev 175466)
@@ -714,7 +714,7 @@
int trackScore = 0;
if (userPrefersCaptions()) {
- // When the user prefers accessiblity tracks, rank is SDH, then CC, then subtitles.
+ // When the user prefers accessibility tracks, rank is SDH, then CC, then subtitles.
if (track->kind() == track->subtitlesKeyword())
trackScore = 1;
else if (track->isClosedCaptions())
Modified: trunk/Source/WebCore/platform/gtk/po/ChangeLog (175465 => 175466)
--- trunk/Source/WebCore/platform/gtk/po/ChangeLog 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebCore/platform/gtk/po/ChangeLog 2014-11-03 08:22:22 UTC (rev 175466)
@@ -1,3 +1,14 @@
+2014-11-03 Sungmann Cho <[email protected]>
+
+ AX: Fix some minor typos related to the word "accessibility".
+ https://bugs.webkit.org/show_bug.cgi?id=138299
+
+ Reviewed by Chris Fleizach.
+
+ No new tests, no behavior change.
+
+ * en_CA.po:
+
2014-09-30 Rajesh Ranjan <[email protected]>
Hindi translation updated
Modified: trunk/Source/WebCore/platform/gtk/po/en_CA.po (175465 => 175466)
--- trunk/Source/WebCore/platform/gtk/po/en_CA.po 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebCore/platform/gtk/po/en_CA.po 2014-11-03 08:22:22 UTC (rev 175466)
@@ -1457,7 +1457,7 @@
#: ../../../WebKit2/UIProcess/API/gtk/WebKitSettings.cpp:842
#, fuzzy
msgid "Whether to enable accessibility enhanced keyboard navigation"
-msgstr "Whether to enable accesibility enhanced keyboard navigation"
+msgstr "Whether to enable accessibility enhanced keyboard navigation"
#: ../../../WebKit/gtk/webkit/webkitwebsettings.cpp:458
msgid "Enable HTML5 Database"
Modified: trunk/Source/WebKit/win/AccessibleBase.h (175465 => 175466)
--- trunk/Source/WebKit/win/AccessibleBase.h 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebKit/win/AccessibleBase.h 2014-11-03 08:22:22 UTC (rev 175466)
@@ -114,7 +114,7 @@
virtual HRESULT STDMETHODCALLTYPE GetIDsOfNames(REFIID, LPOLESTR*, UINT, LCID, DISPID*) { return E_NOTIMPL; }
virtual HRESULT STDMETHODCALLTYPE Invoke(DISPID, REFIID, LCID, WORD, DISPPARAMS*, VARIANT*, EXCEPINFO*, UINT*) { return E_NOTIMPL; }
- // WebCore::AccessiblityObjectWrapper
+ // WebCore::AccessibilityObjectWrapper
virtual void detach() {
ASSERT(m_object);
m_object = 0;
Modified: trunk/Source/WebKit/win/ChangeLog (175465 => 175466)
--- trunk/Source/WebKit/win/ChangeLog 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebKit/win/ChangeLog 2014-11-03 08:22:22 UTC (rev 175466)
@@ -1,3 +1,14 @@
+2014-11-03 Sungmann Cho <[email protected]>
+
+ AX: Fix some minor typos related to the word "accessibility".
+ https://bugs.webkit.org/show_bug.cgi?id=138299
+
+ Reviewed by Chris Fleizach.
+
+ No new tests, no behavior change.
+
+ * AccessibleBase.h:
+
2014-10-31 Gyuyoung Kim <[email protected]>
Use std::unique_ptr for TypeCountSet
Modified: trunk/Source/WebKit2/ChangeLog (175465 => 175466)
--- trunk/Source/WebKit2/ChangeLog 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebKit2/ChangeLog 2014-11-03 08:22:22 UTC (rev 175466)
@@ -1,3 +1,14 @@
+2014-11-03 Sungmann Cho <[email protected]>
+
+ AX: Fix some minor typos related to the word "accessibility".
+ https://bugs.webkit.org/show_bug.cgi?id=138299
+
+ Reviewed by Chris Fleizach.
+
+ No new tests, no behavior change.
+
+ * WebProcess/WebPage/WKAccessibilityWebPageObjectIOS.mm:
+
2014-11-01 Carlos Garcia Campos <[email protected]>
REGRESSION(r163656): Remote inspector doesn't work unless preferences change after page initialization
Modified: trunk/Source/WebKit2/WebProcess/WebPage/WKAccessibilityWebPageObjectIOS.mm (175465 => 175466)
--- trunk/Source/WebKit2/WebProcess/WebPage/WKAccessibilityWebPageObjectIOS.mm 2014-11-03 07:53:11 UTC (rev 175465)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WKAccessibilityWebPageObjectIOS.mm 2014-11-03 08:22:22 UTC (rev 175466)
@@ -37,7 +37,7 @@
#import <WebCore/WAKAppKitStubs.h>
/*
- The implementation of this class will be augmented by an accesibility bundle that is loaded only when accessibility is requested to be enabled.
+ The implementation of this class will be augmented by an accessibility bundle that is loaded only when accessibility is requested to be enabled.
*/
@implementation WKAccessibilityWebPageObject