mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out 1 changesets (bug 1160200) for causing R2 test failures
Backed out changeset b4f64c940524 (bug 1160200)
This commit is contained in:
parent
410ed448e3
commit
52eef12778
@ -34,8 +34,6 @@ DecoderFactory::GetDecoderType(const char* aMimeType)
|
||||
type = DecoderType::PNG;
|
||||
} else if (!strcmp(aMimeType, IMAGE_X_PNG)) {
|
||||
type = DecoderType::PNG;
|
||||
} else if (!strcmp(aMimeType, IMAGE_APNG)) {
|
||||
type = DecoderType::PNG;
|
||||
|
||||
// GIF
|
||||
} else if (!strcmp(aMimeType, IMAGE_GIF)) {
|
||||
|
@ -77,7 +77,6 @@ static const mozilla::Module::CategoryEntry kImageCategories[] = {
|
||||
{ "Gecko-Content-Viewers", IMAGE_BMP_MS, "@mozilla.org/content/document-loader-factory;1" },
|
||||
{ "Gecko-Content-Viewers", IMAGE_ICON_MS, "@mozilla.org/content/document-loader-factory;1" },
|
||||
{ "Gecko-Content-Viewers", IMAGE_PNG, "@mozilla.org/content/document-loader-factory;1" },
|
||||
{ "Gecko-Content-Viewers", IMAGE_APNG, "@mozilla.org/content/document-loader-factory;1" },
|
||||
{ "Gecko-Content-Viewers", IMAGE_X_PNG, "@mozilla.org/content/document-loader-factory;1" },
|
||||
{ "content-sniffing-services", "@mozilla.org/image/loader;1", "@mozilla.org/image/loader;1" },
|
||||
{ nullptr }
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 361 B |
@ -1,3 +0,0 @@
|
||||
<!doctype html>
|
||||
<title>apng expected</title>
|
||||
<img src="animated.apng">
|
@ -1 +0,0 @@
|
||||
== test.html expected.html
|
Binary file not shown.
Before Width: | Height: | Size: 100 B |
@ -1,6 +0,0 @@
|
||||
<!doctype html>
|
||||
<title>apng test</title>
|
||||
<picture>
|
||||
<source type="video/vnd.mozilla.apng" srcset="animated.apng">
|
||||
<img src="static.png">
|
||||
</picture>
|
@ -19,9 +19,6 @@ include w3c-css/received/reftest.list
|
||||
include abs-pos/reftest.list
|
||||
include position-relative/reftest.list
|
||||
|
||||
# apng-mime
|
||||
include apng-mime/reftest.list
|
||||
|
||||
include async-scrolling/reftest.list
|
||||
|
||||
# backgrounds/
|
||||
|
@ -94,7 +94,6 @@
|
||||
#define IMAGE_JPG "image/jpg"
|
||||
#define IMAGE_PJPEG "image/pjpeg"
|
||||
#define IMAGE_PNG "image/png"
|
||||
#define IMAGE_APNG "video/vnd.mozilla.apng"
|
||||
#define IMAGE_X_PNG "image/x-png"
|
||||
#define IMAGE_PPM "image/x-portable-pixmap"
|
||||
#define IMAGE_XBM "image/x-xbitmap"
|
||||
|
@ -576,7 +576,6 @@ static nsExtraMimeTypeEntry extraMimeEntries [] =
|
||||
{ IMAGE_ICO, "ico,cur", "ICO Image" },
|
||||
{ IMAGE_JPEG, "jpeg,jpg,jfif,pjpeg,pjp", "JPEG Image" },
|
||||
{ IMAGE_PNG, "png", "PNG Image" },
|
||||
{ IMAGE_APNG, "apng", "APNG Image" },
|
||||
{ IMAGE_TIFF, "tiff,tif", "TIFF Image" },
|
||||
{ IMAGE_XBM, "xbm", "XBM Image" },
|
||||
{ IMAGE_SVG_XML, "svg", "Scalable Vector Graphics" },
|
||||
|
Loading…
Reference in New Issue
Block a user