diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-02-20 18:57:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-20 18:57:53 +0100 |
commit | d77729916b4b9c2b67abd41181336c2cbb1da968 (patch) | |
tree | 8570f17500f94cc5c4275517b7c4d1958ca813e6 /layout/style | |
parent | 8826313be011b3077c3ac4c6238f2b62e1f3227d (diff) | |
parent | 4c697043da9fe3f58a7e070dad74eab6972695a0 (diff) | |
download | UXP-d77729916b4b9c2b67abd41181336c2cbb1da968.tar UXP-d77729916b4b9c2b67abd41181336c2cbb1da968.tar.gz UXP-d77729916b4b9c2b67abd41181336c2cbb1da968.tar.lz UXP-d77729916b4b9c2b67abd41181336c2cbb1da968.tar.xz UXP-d77729916b4b9c2b67abd41181336c2cbb1da968.zip |
Merge pull request #27 from MoonchildProductions/theme-work
Remove Windows XP and Windows Vista theme components and resources.
Diffstat (limited to 'layout/style')
-rw-r--r-- | layout/style/nsMediaFeatures.cpp | 2 | ||||
-rw-r--r-- | layout/style/test/chrome/bug418986-2.js | 2 | ||||
-rw-r--r-- | layout/style/test/test_media_queries.html | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/layout/style/nsMediaFeatures.cpp b/layout/style/nsMediaFeatures.cpp index 052ce58e8..5a54d5455 100644 --- a/layout/style/nsMediaFeatures.cpp +++ b/layout/style/nsMediaFeatures.cpp @@ -70,8 +70,6 @@ struct OperatingSystemVersionInfo { // Os version identities used in the -moz-os-version media query. const OperatingSystemVersionInfo osVersionStrings[] = { - { LookAndFeel::eOperatingSystemVersion_WindowsXP, L"windows-xp" }, - { LookAndFeel::eOperatingSystemVersion_WindowsVista, L"windows-vista" }, { LookAndFeel::eOperatingSystemVersion_Windows7, L"windows-win7" }, { LookAndFeel::eOperatingSystemVersion_Windows8, L"windows-win8" }, { LookAndFeel::eOperatingSystemVersion_Windows10, L"windows-win10" } diff --git a/layout/style/test/chrome/bug418986-2.js b/layout/style/test/chrome/bug418986-2.js index 4336f4abd..b083f48ee 100644 --- a/layout/style/test/chrome/bug418986-2.js +++ b/layout/style/test/chrome/bug418986-2.js @@ -53,8 +53,6 @@ var suppressed_toggles = [ // Possible values for '-moz-os-version' var windows_versions = [ - "windows-xp", - "windows-vista", "windows-win7", "windows-win8", "windows-win10", diff --git a/layout/style/test/test_media_queries.html b/layout/style/test/test_media_queries.html index 479306a55..d503fad0b 100644 --- a/layout/style/test/test_media_queries.html +++ b/layout/style/test/test_media_queries.html @@ -713,8 +713,6 @@ function run() { expression_should_not_be_parseable("-moz-windows-theme: "); // os version media queries (currently windows only) - expression_should_be_parseable("-moz-os-version: windows-xp"); - expression_should_be_parseable("-moz-os-version: windows-vista"); expression_should_be_parseable("-moz-os-version: windows-win7"); expression_should_be_parseable("-moz-os-version: windows-win8"); expression_should_be_parseable("-moz-os-version: windows-win10"); |