mirror of
https://github.com/servo/servo.git
synced 2025-08-11 16:35:33 +01:00
[WebDriver] Fully implement "switch to (parent) frame" (#37685)
1. Separate the handling of ["switch to parent frame"](https://w3c.github.io/webdriver/#switch-to-parent-frame) from the rest as the processing is a bit different 2. Implement "Select frame by 16-bits numbered ID" for ["switch to frame"](https://w3c.github.io/webdriver/#switch-to-frame) 3. Implement other missing steps Testing: All WebDriver Conformance test with new passing cases --------- Signed-off-by: Euclid Ye <yezhizhenjiakang@gmail.com>
This commit is contained in:
parent
253fb247f5
commit
f9880637e9
11 changed files with 79 additions and 61 deletions
|
@ -4,6 +4,3 @@
|
|||
|
||||
[test_textarea_append]
|
||||
expected: FAIL
|
||||
|
||||
[test_date]
|
||||
expected: FAIL
|
||||
|
|
|
@ -20,8 +20,5 @@
|
|||
[test_disabled]
|
||||
expected: FAIL
|
||||
|
||||
[test_transparent_element]
|
||||
expected: FAIL
|
||||
|
||||
[test_readonly_element]
|
||||
expected: FAIL
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
[test_no_browsing_context]
|
||||
expected: FAIL
|
||||
|
||||
[test_no_such_element_with_startnode_from_other_frame]
|
||||
expected: FAIL
|
||||
|
||||
[test_find_element[xpath-//a\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
[test_no_browsing_context]
|
||||
expected: FAIL
|
||||
|
||||
[test_no_such_shadow_root_with_shadow_root_from_other_frame]
|
||||
expected: FAIL
|
||||
|
||||
[test_find_element[open-xpath-//a\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
[test_no_browsing_context]
|
||||
expected: FAIL
|
||||
|
||||
[test_no_such_element_with_startnode_from_other_frame]
|
||||
expected: FAIL
|
||||
|
||||
[test_find_elements[xpath-//a\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
[test_no_browsing_context]
|
||||
expected: FAIL
|
||||
|
||||
[test_no_such_shadow_root_with_shadow_root_from_other_frame]
|
||||
expected: FAIL
|
||||
|
||||
[test_find_elements[open-xpath-//a\]]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
[switch_number.py]
|
||||
[test_frame_id_number_index_out_of_bounds[1\]]
|
||||
expected: FAIL
|
||||
|
||||
[test_frame_id_number_index_out_of_bounds[65535\]]
|
||||
expected: FAIL
|
||||
|
||||
[test_frame_id_number_index[0-foo\]]
|
||||
expected: FAIL
|
||||
|
||||
[test_frame_id_number_index[1-bar\]]
|
||||
expected: FAIL
|
||||
|
||||
[test_frame_id_number_index_nested]
|
||||
expected: FAIL
|
Loading…
Add table
Add a link
Reference in a new issue