aboutsummaryrefslogtreecommitdiffstats
path: root/components/servo/tests/webview.rs
Commit message (Collapse)AuthorAgeFilesLines
* script: Unconditionally send exit message during pipeline shutdown (#36808)Martin Robinson14 hours1-1/+13
| | | | | | | | | | | | If a `WebView` is dropped immediately after creating it, the exit pipeline message can arrive to the `ScriptThread` before the `Document` is created for the pipeline. If this happens, we should still send a message to the `Constellation` informing it that the pipeline is closed, otherwise it will never know that this has happened properly. Testing: This change includes a new unit test. Fixes: #36807. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
* libservo: Add a basic `WebView` API test (#36791)Martin Robinson3 days1-0/+49
This should allow us to start unit testing the `WebView` API. Testing: This is a test. Signed-off-by: Martin Robinson <mrobinson@igalia.com>