RESOLVED FIXED 132379
AX: Make "contenteditable" regions into AXTextAreas
https://bugs.webkit.org/show_bug.cgi?id=132379
Summary AX: Make "contenteditable" regions into AXTextAreas
chris fleizach
Reported 2014-04-29 23:34:13 PDT
If we can make contenteditable regions into text areas, I think it will improve the reliability of VoiceOver interaction with these objects. We'll be able to use the much more standarized AXTextArea interface, rather than trying to figure what's going on with a random group on the web that has content editable. <rdar://problem/16756501>
Attachments
patch (11.76 KB, patch)
2014-04-29 23:36 PDT, chris fleizach
buildbot: commit-queue-
Archive of layout-test-results from webkit-ews-06 for mac-mountainlion (632.48 KB, application/zip)
2014-04-30 00:14 PDT, Build Bot
no flags
patch (11.77 KB, patch)
2014-04-30 00:17 PDT, chris fleizach
mario: review+
buildbot: commit-queue-
Archive of layout-test-results from webkit-ews-10 for mac-mountainlion-wk2 (563.40 KB, application/zip)
2014-04-30 01:51 PDT, Build Bot
no flags
Archive of layout-test-results from webkit-ews-05 for mac-mountainlion (521.80 KB, application/zip)
2014-04-30 03:40 PDT, Build Bot
no flags
Archive of layout-test-results from webkit-ews-02 for mac-mountainlion (494.18 KB, application/zip)
2014-04-30 04:39 PDT, Build Bot
no flags
patch (11.75 KB, patch)
2014-04-30 08:46 PDT, chris fleizach
no flags
patch for landing (13.37 KB, patch)
2014-04-30 09:04 PDT, chris fleizach
buildbot: commit-queue-
Archive of layout-test-results from webkit-ews-13 for mac-mountainlion-wk2 (464.76 KB, application/zip)
2014-04-30 10:05 PDT, Build Bot
no flags
Archive of layout-test-results from webkit-ews-08 for mac-mountainlion (494.36 KB, application/zip)
2014-04-30 10:30 PDT, Build Bot
no flags
Archive of layout-test-results from webkit-ews-06 for mac-mountainlion (495.43 KB, application/zip)
2014-04-30 11:29 PDT, Build Bot
no flags
patch for landing (15.01 KB, patch)
2014-04-30 12:59 PDT, chris fleizach
no flags
chris fleizach
Comment 1 2014-04-29 23:36:06 PDT
Build Bot
Comment 2 2014-04-30 00:14:05 PDT
Comment on attachment 230462 [details] patch Attachment 230462 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/6288148757741568 New failing tests: platform/mac/accessibility/content-editable-as-textarea.html
Build Bot
Comment 3 2014-04-30 00:14:09 PDT
Created attachment 230465 [details] Archive of layout-test-results from webkit-ews-06 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-06 Port: mac-mountainlion Platform: Mac OS X 10.8.5
chris fleizach
Comment 4 2014-04-30 00:17:38 PDT
Build Bot
Comment 5 2014-04-30 01:51:24 PDT
Comment on attachment 230466 [details] patch Attachment 230466 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.appspot.com/results/5244480294748160 New failing tests: platform/mac/accessibility/content-editable-as-textarea.html
Build Bot
Comment 6 2014-04-30 01:51:28 PDT
Created attachment 230470 [details] Archive of layout-test-results from webkit-ews-10 for mac-mountainlion-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: webkit-ews-10 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Mario Sanchez Prada
Comment 7 2014-04-30 03:17:56 PDT
Comment on attachment 230466 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=230466&action=review Looks good, just a couple of comments below > LayoutTests/platform/mac/accessibility/content-editable-as-textarea-expected.txt:32 > + AXMarkedMisspelled = 1; This line is not being output when running the test in the Mac bots. Guess you should just remove it from here? > LayoutTests/platform/mac/accessibility/content-editable-as-textarea.html:32 > + window.testRunner.notifyDone(); > + } > + } > + > + if (window.accessibilityController) { > + window.testRunner.waitUntilDone(); I think the "trend" these days is to declare window.jsTestIsAsync = true; and call finishJSTest() when done, instead of using waitUntilDone() and notifyDone(). Could you change that before landing?
Build Bot
Comment 8 2014-04-30 03:40:25 PDT
Comment on attachment 230466 [details] patch Attachment 230466 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/5844894174150656 New failing tests: platform/mac/accessibility/content-editable-as-textarea.html
Build Bot
Comment 9 2014-04-30 03:40:30 PDT
Created attachment 230471 [details] Archive of layout-test-results from webkit-ews-05 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-05 Port: mac-mountainlion Platform: Mac OS X 10.8.5
Build Bot
Comment 10 2014-04-30 04:39:50 PDT
Comment on attachment 230466 [details] patch Attachment 230466 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/5335704326373376 New failing tests: platform/mac/accessibility/content-editable-as-textarea.html
Build Bot
Comment 11 2014-04-30 04:39:55 PDT
Created attachment 230472 [details] Archive of layout-test-results from webkit-ews-02 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-02 Port: mac-mountainlion Platform: Mac OS X 10.8.5
chris fleizach
Comment 12 2014-04-30 08:46:50 PDT
Created attachment 230479 [details] patch Thanks Mario Patch for landing…
Mario Sanchez Prada
Comment 13 2014-04-30 09:01:12 PDT
Comment on attachment 230479 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=230479&action=review > LayoutTests/platform/mac/accessibility/content-editable-as-textarea-expected.txt:32 > + AXMarkedMisspelled = 1; Did you intentionally left this one here?
chris fleizach
Comment 14 2014-04-30 09:03:38 PDT
Comment on attachment 230479 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=230479&action=review >> LayoutTests/platform/mac/accessibility/content-editable-as-textarea-expected.txt:32 >> + AXMarkedMisspelled = 1; > > Did you intentionally left this one here? ugh, i keep trying to add a mac-mountainlion test specific for this but keep forgetting something (like svn add)
chris fleizach
Comment 15 2014-04-30 09:04:18 PDT
Created attachment 230482 [details] patch for landing
Build Bot
Comment 16 2014-04-30 10:05:20 PDT
Comment on attachment 230482 [details] patch for landing Attachment 230482 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.appspot.com/results/4947462905135104 New failing tests: platform/mac/accessibility/content-editable-as-textarea.html
Build Bot
Comment 17 2014-04-30 10:05:24 PDT
Created attachment 230488 [details] Archive of layout-test-results from webkit-ews-13 for mac-mountainlion-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: webkit-ews-13 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Mario Sanchez Prada
Comment 18 2014-04-30 10:26:37 PDT
(In reply to comment #16) > (From update of attachment 230482 [details]) > Attachment 230482 [details] did not pass mac-wk2-ews (mac-wk2): > Output: http://webkit-queues.appspot.com/results/4947462905135104 > > New failing tests: > platform/mac/accessibility/content-editable-as-textarea.html It looks to me like you might need another platform specific expectation for mac-wk2. Or maybe just one for mac/?
Build Bot
Comment 19 2014-04-30 10:30:06 PDT
Comment on attachment 230482 [details] patch for landing Attachment 230482 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/5073060835098624 New failing tests: platform/mac/accessibility/content-editable-as-textarea.html
Build Bot
Comment 20 2014-04-30 10:30:12 PDT
Created attachment 230491 [details] Archive of layout-test-results from webkit-ews-08 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-08 Port: mac-mountainlion Platform: Mac OS X 10.8.5
chris fleizach
Comment 21 2014-04-30 11:28:51 PDT
(In reply to comment #18) > (In reply to comment #16) > > (From update of attachment 230482 [details] [details]) > > Attachment 230482 [details] [details] did not pass mac-wk2-ews (mac-wk2): > > Output: http://webkit-queues.appspot.com/results/4947462905135104 > > > > New failing tests: > > platform/mac/accessibility/content-editable-as-textarea.html > > It looks to me like you might need another platform specific expectation for mac-wk2. Or maybe just one for mac/? Maybe sub-platform specific test results don't work when it's already a platform test?
Build Bot
Comment 22 2014-04-30 11:29:09 PDT
Comment on attachment 230482 [details] patch for landing Attachment 230482 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/5352014666006528 New failing tests: platform/mac/accessibility/content-editable-as-textarea.html
Build Bot
Comment 23 2014-04-30 11:29:15 PDT
Created attachment 230500 [details] Archive of layout-test-results from webkit-ews-06 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-06 Port: mac-mountainlion Platform: Mac OS X 10.8.5
chris fleizach
Comment 24 2014-04-30 12:59:35 PDT
Created attachment 230514 [details] patch for landing Moved this to the AX folder and have specific platform results. GTK can add in their results too
chris fleizach
Comment 25 2014-04-30 13:49:27 PDT
Note You need to log in before you can comment on or make changes to this bug.