Open Bug 1884966 Opened 1 year ago Updated 5 days ago

Intermittent /webdriver/tests/bidi/browsing_context/context_destroyed/context_destroyed.py | single tracking bug

Categories

(Remote Protocol :: WebDriver BiDi, defect, P5)

defect

Tracking

(Not tracked)

REOPENED

People

(Reporter: intermittent-bug-filer, Unassigned)

References

(Depends on 2 open bugs)

Details

(Keywords: intermittent-failure, intermittent-testcase, leave-open)

Filed by: sstanca [at] mozilla.com
Parsed log: https://treeherder.mozilla.org/logviewer?job_id=450474776&repo=autoland
Full log: https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/RjieHg_hTGSbcM5qYTja9Q/runs/0/artifacts/public/logs/live_backing.log


[task 2024-03-12T15:11:04.981Z] 15:11:04     INFO - TEST-PASS | /webdriver/tests/bidi/browsing_context/context_destroyed/context_destroyed.py | test_delete_iframe 
[task 2024-03-12T15:11:04.981Z] 15:11:04     INFO - TEST-FAIL | /webdriver/tests/bidi/browsing_context/context_destroyed/context_destroyed.py | test_delete_nested_iframes - assert 2 == 1
[task 2024-03-12T15:11:04.981Z] 15:11:04     INFO - bidi_session = <webdriver.bidi.client.BidiSession object at 0x7fe0cbab2b20>
[task 2024-03-12T15:11:04.981Z] 15:11:04     INFO - subscribe_events = <function subscribe_events.<locals>.subscribe_events at 0x7fe0cbb068b0>
[task 2024-03-12T15:11:04.981Z] 15:11:04     INFO - new_tab = {'context': '1c1f6426-b445-4802-9075-b7a35d4fb568'}
[task 2024-03-12T15:11:04.981Z] 15:11:04     INFO - test_page_nested_frames = 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%...253E%253C%252Fiframe%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8'
[task 2024-03-12T15:11:04.981Z] 15:11:04     INFO - test_page_same_origin_frame = 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%...253Efoo%253C%252Fdiv%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8'
[task 2024-03-12T15:11:04.981Z] 15:11:04     INFO - 
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -     async def test_delete_nested_iframes(
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         bidi_session,
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         subscribe_events,
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         new_tab,
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         test_page_nested_frames,
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         test_page_same_origin_frame,
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -     ):
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         await subscribe_events([CONTEXT_DESTROYED_EVENT])
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         # Track all received browsingContext.contextDestroyed events in the events array
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         events = []
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         async def on_event(_, data):
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -             events.append(data)
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         remove_listener = bidi_session.add_event_listener(CONTEXT_DESTROYED_EVENT, on_event)
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         await bidi_session.browsing_context.navigate(
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -             url=test_page_nested_frames, context=new_tab["context"], wait="complete"
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         )
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         contexts = await bidi_session.browsing_context.get_tree(root=new_tab["context"])
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -         top_iframe = contexts[0]["children"][0]
[task 2024-03-12T15:11:04.982Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -         # Delete top iframe
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -         await bidi_session.script.evaluate(
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -             expression="""document.querySelector('iframe').remove()""",
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -             target=ContextTarget(new_tab["context"]),
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -             await_promise=False,
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -         )
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO - >       assert len(events) == 1
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO - E       assert 2 == 1
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO - E         +2
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO - E         -1
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO - 
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO - bidi_session = <webdriver.bidi.client.BidiSession object at 0x7fe0cbab2b20>
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO - contexts   = [{'children': [{'children': [{'children': [],
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -                               'context': '38654705666',
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -                               'url': 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Cdiv%3Efoo%3C%2Fdiv%3E&mime=text%2Fhtml&charset=UTF-8',
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -                               'userContext': 'default'}],
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -                 'context': '38654705665',
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -                 'url': 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Ciframe+src%3D%27https%3A%2F%2Fweb-platform.test%3A8443%2Fwebdriver%2Ftests%2Fsupport%2Finline.py%3Fdoc%3D%253C%2521doctype%2Bhtml%253E%250A%253Cmeta%2Bcharset%253DUTF-8%253E%250A%253Cdiv%253Efoo%253C%252Fdiv%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8',
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -                 'userContext': 'default'}],
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -   'context': '1c1f6426-b445-4802-9075-b7a35d4fb568',
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -   'parent': None,
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -   'url': 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Ciframe+src%3D%27https%3A%2F%2Fweb-platform.test%3A8443%2Fwebdriver%2Ftests%2Fsupport%2Finline.py%3Fdoc%3D%253C%2521doctype%2Bhtml%253E%250A%253Cmeta%2Bcharset%253DUTF-8%253E%250A%253Ciframe%2Bsrc%253D%2527https%253A%252F%252Fweb-platform.test%253A8443%252Fwebdriver%252Ftests%252Fsupport%252Finline.py%253Fdoc%253D%25253C%252521doctype%252Bhtml%25253E%25250A%25253Cmeta%252Bcharset%25253DUTF-8%25253E%25250A%25253Cdiv%25253Efoo%25253C%25252Fdiv%25253E%2526mime%253Dtext%25252Fhtml%2526charset%253DUTF-8%2527%253E%253C%252Fiframe%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8',
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -   'userContext': 'default'}]
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO - events     = [{'children': None,
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -   'context': '38654705666',
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -   'parent': '38654705665',
[task 2024-03-12T15:11:04.983Z] 15:11:04     INFO -   'url': 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Cdiv%3Efoo%3C%2Fdiv%3E&mime=text%2Fhtml&charset=UTF-8',
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -   'userContext': 'default'},
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -  {'children': None,
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -   'context': '38654705665',
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -   'parent': '1c1f6426-b445-4802-9075-b7a35d4fb568',
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -   'url': 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Ciframe+src%3D%27https%3A%2F%2Fweb-platform.test%3A8443%2Fwebdriver%2Ftests%2Fsupport%2Finline.py%3Fdoc%3D%253C%2521doctype%2Bhtml%253E%250A%253Cmeta%2Bcharset%253DUTF-8%253E%250A%253Cdiv%253Efoo%253C%252Fdiv%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8',
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -   'userContext': 'default'}]
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO - new_tab    = {'context': '1c1f6426-b445-4802-9075-b7a35d4fb568'}
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO - on_event   = <function test_delete_nested_iframes.<locals>.on_event at 0x7fe0cbb140d0>
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO - remove_listener = <function BidiSession.add_event_listener.<locals>.<lambda> at 0x7fe0cbb14700>
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO - subscribe_events = <function subscribe_events.<locals>.subscribe_events at 0x7fe0cbb068b0>
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO - test_page_nested_frames = 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Ciframe+src%3D%27https%3A%2F%2Fweb-platform.test%3A8443%2Fwebdriver%2Ftests%2Fsupport%2Finline.py%3Fdoc%3D%253C%2521doctype%2Bhtml%253E%250A%253Cmeta%2Bcharset%253DUTF-8%253E%250A%253Ciframe%2Bsrc%253D%2527https%253A%252F%252Fweb-platform.test%253A8443%252Fwebdriver%252Ftests%252Fsupport%252Finline.py%253Fdoc%253D%25253C%252521doctype%252Bhtml%25253E%25250A%25253Cmeta%252Bcharset%25253DUTF-8%25253E%25250A%25253Cdiv%25253Efoo%25253C%25252Fdiv%25253E%2526mime%253Dtext%25252Fhtml%2526charset%253DUTF-8%2527%253E%253C%252Fiframe%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8'
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO - test_page_same_origin_frame = 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Ciframe+src%3D%27https%3A%2F%2Fweb-platform.test%3A8443%2Fwebdriver%2Ftests%2Fsupport%2Finline.py%3Fdoc%3D%253C%2521doctype%2Bhtml%253E%250A%253Cmeta%2Bcharset%253DUTF-8%253E%250A%253Cdiv%253Efoo%253C%252Fdiv%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8'
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO - top_iframe = {'children': [{'children': [],
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -                'context': '38654705666',
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -                'url': 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Cdiv%3Efoo%3C%2Fdiv%3E&mime=text%2Fhtml&charset=UTF-8',
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -                'userContext': 'default'}],
[task 2024-03-12T15:11:04.984Z] 15:11:04     INFO -  'context': '38654705665',
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO -  'url': 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Ciframe+src%3D%27https%3A%2F%2Fweb-platform.test%3A8443%2Fwebdriver%2Ftests%2Fsupport%2Finline.py%3Fdoc%3D%253C%2521doctype%2Bhtml%253E%250A%253Cmeta%2Bcharset%253DUTF-8%253E%250A%253Cdiv%253Efoo%253C%252Fdiv%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8',
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO -  'userContext': 'default'}
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO - 
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO - tests/web-platform/tests/webdriver/tests/bidi/browsing_context/context_destroyed/context_destroyed.py:178: AssertionError
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO - TEST-UNEXPECTED-FAIL | /webdriver/tests/bidi/browsing_context/context_destroyed/context_destroyed.py | test_iframe_destroy_parent - assert 2 == 1
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO - bidi_session = <webdriver.bidi.client.BidiSession object at 0x7fe0cbab2b20>
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO - subscribe_events = <function subscribe_events.<locals>.subscribe_events at 0x7fe0cbb77b80>
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO - new_tab = {'context': 'b4826510-7cc8-42db-9592-26e148de65e2'}
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO - test_page_nested_frames = 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%...253E%253C%252Fiframe%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8'
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO - 
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO -     async def test_iframe_destroy_parent(
[task 2024-03-12T15:11:04.985Z] 15:11:04     INFO -         bidi_session, subscribe_events, new_tab, test_page_nested_frames
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -     ):
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -         await subscribe_events([CONTEXT_DESTROYED_EVENT])
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -         # Track all received browsingContext.contextDestroyed events in the events array
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -         events = []
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -         async def on_event(_, data):
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -             events.append(data)
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -         remove_listener = bidi_session.add_event_listener(CONTEXT_DESTROYED_EVENT, on_event)
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -         await bidi_session.browsing_context.navigate(
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -             url=test_page_nested_frames, context=new_tab["context"], wait="complete"
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -         )
[task 2024-03-12T15:11:04.986Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO -         # Destroy top context
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO -         await bidi_session.browsing_context.close(context=new_tab["context"])
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO -     
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO - >       assert len(events) == 1
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO - E       assert 2 == 1
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO - E         +2
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO - E         -1
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO - 
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO - bidi_session = <webdriver.bidi.client.BidiSession object at 0x7fe0cbab2b20>
[task 2024-03-12T15:11:04.987Z] 15:11:04     INFO - events     = [{'children': None,
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO -   'parent': None,
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO -   'url': 'moz-extension://0d630d8d-98b9-409c-8e8c-cde9b00f4ee2/_generated_background_page.html',
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO -   'userContext': 'default'},
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO -  {'children': None,
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO -   'context': 'b4826510-7cc8-42db-9592-26e148de65e2',
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO -   'parent': None,
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO -   'url': 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Ciframe+src%3D%27https%3A%2F%2Fweb-platform.test%3A8443%2Fwebdriver%2Ftests%2Fsupport%2Finline.py%3Fdoc%3D%253C%2521doctype%2Bhtml%253E%250A%253Cmeta%2Bcharset%253DUTF-8%253E%250A%253Ciframe%2Bsrc%253D%2527https%253A%252F%252Fweb-platform.test%253A8443%252Fwebdriver%252Ftests%252Fsupport%252Finline.py%253Fdoc%253D%25253C%252521doctype%252Bhtml%25253E%25250A%25253Cmeta%252Bcharset%25253DUTF-8%25253E%25250A%25253Cdiv%25253Efoo%25253C%25252Fdiv%25253E%2526mime%253Dtext%25252Fhtml%2526charset%253DUTF-8%2527%253E%253C%252Fiframe%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8',
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO -   'userContext': 'default'}]
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO - new_tab    = {'context': 'b4826510-7cc8-42db-9592-26e148de65e2'}
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO - on_event   = <function test_iframe_destroy_parent.<locals>.on_event at 0x7fe0cbb77700>
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO - remove_listener = <function BidiSession.add_event_listener.<locals>.<lambda> at 0x7fe0cbb80160>
[task 2024-03-12T15:11:04.988Z] 15:11:04     INFO - subscribe_events = <function subscribe_events.<locals>.subscribe_events at 0x7fe0cbb77b80>
[task 2024-03-12T15:11:04.989Z] 15:11:04     INFO - test_page_nested_frames = 'https://web-platform.test:8443/webdriver/tests/support/inline.py?doc=%3C%21doctype+html%3E%0A%3Cmeta+charset%3DUTF-8%3E%0A%3Ciframe+src%3D%27https%3A%2F%2Fweb-platform.test%3A8443%2Fwebdriver%2Ftests%2Fsupport%2Finline.py%3Fdoc%3D%253C%2521doctype%2Bhtml%253E%250A%253Cmeta%2Bcharset%253DUTF-8%253E%250A%253Ciframe%2Bsrc%253D%2527https%253A%252F%252Fweb-platform.test%253A8443%252Fwebdriver%252Ftests%252Fsupport%252Finline.py%253Fdoc%253D%25253C%252521doctype%252Bhtml%25253E%25250A%25253Cmeta%252Bcharset%25253DUTF-8%25253E%25250A%25253Cdiv%25253Efoo%25253C%25252Fdiv%25253E%2526mime%253Dtext%25252Fhtml%2526charset%253DUTF-8%2527%253E%253C%252Fiframe%253E%26mime%3Dtext%252Fhtml%26charset%3DUTF-8%27%3E%3C%2Fiframe%3E&mime=text%2Fhtml&charset=UTF-8'
[task 2024-03-12T15:11:04.989Z] 15:11:04     INFO - 
[task 2024-03-12T15:11:04.989Z] 15:11:04     INFO - tests/web-platform/tests/webdriver/tests/bidi/browsing_context/context_destroyed/context_destroyed.py:209: AssertionError
[task 2024-03-12T15:11:04.989Z] 15:11:04     INFO - ...
[task 2024-03-12T15:11:04.989Z] 15:11:04     INFO - TEST-OK | /webdriver/tests/bidi/browsing_context/context_destroyed/context_destroyed.py | took 61943ms
Status: NEW → RESOLVED
Closed: 1 year ago
Resolution: --- → INCOMPLETE
Status: RESOLVED → REOPENED
Resolution: INCOMPLETE → ---

(In reply to Intermittent Failures Robot from comment #16)

For more details, see:
https://treeherder.mozilla.org/intermittent-failures/bugdetails?bug=1884966&startday=2024-10-21&endday=2024-10-27&tree=all

In all these cases the browsingContext.contextDestroyed event was triggered by the URL moz-extension://4fd6d465-df0e-4152-af5f-6e3461f4f822/_generated_background_page.html. So this bug depends on bug 1903272.

Depends on: 1903272
Status: REOPENED → RESOLVED
Closed: 1 year ago7 months ago
Resolution: --- → INCOMPLETE
Status: RESOLVED → REOPENED
Resolution: INCOMPLETE → ---
Status: REOPENED → RESOLVED
Closed: 7 months ago2 months ago
Resolution: --- → INCOMPLETE

This test file is still blocked by various other issues to get fixed first.

Status: RESOLVED → REOPENED
Depends on: 1953743, 1877953, 1860008
Keywords: leave-open
Resolution: INCOMPLETE → ---
You need to log in before you can comment on or make changes to this bug.