mirror of
https://github.com/servo/servo.git
synced 2025-09-29 16:19:14 +01:00
Add CookieStore pref and add baseline test expectations (#38154)
This adds a preference to control the Cookie Store feature. Also enables the Cookie Store WPT tests with the preference and adds the expectations as a baseline. These tests are expected to be failing because we have not implemented the Cookie Store yet. Testing: Enables new WPT tests. --------- Signed-off-by: Sebastian C <sebsebmc@gmail.com>
This commit is contained in:
parent
adb804772b
commit
d671f58078
52 changed files with 800 additions and 4 deletions
|
@ -77,6 +77,7 @@ pub struct Preferences {
|
|||
pub dom_canvas_text_enabled: bool,
|
||||
pub dom_clipboardevent_enabled: bool,
|
||||
pub dom_composition_event_enabled: bool,
|
||||
pub dom_cookiestore_enabled: bool,
|
||||
pub dom_crypto_subtle_enabled: bool,
|
||||
pub dom_customelements_enabled: bool,
|
||||
pub dom_document_dblclick_timeout: i64,
|
||||
|
@ -254,6 +255,7 @@ impl Preferences {
|
|||
dom_canvas_text_enabled: true,
|
||||
dom_clipboardevent_enabled: true,
|
||||
dom_composition_event_enabled: false,
|
||||
dom_cookiestore_enabled: false,
|
||||
dom_crypto_subtle_enabled: true,
|
||||
dom_customelements_enabled: true,
|
||||
dom_document_dblclick_dist: 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue