Bug 1497197 Comment 14 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Two things:
- we have test failures because we are using data urls in some tests. :gijs already has a fix for this in scope of bug 1560178 
- I noticed that all images with data URLs as `src` are now empty

The first issue is not a big issue. But the second issue is much more problematic. Is there a way we can keep using data URL as image sources here?
Two things:
- we have test failures because we are using data urls in some tests. :gijs already has a fix for this in scope of bug 1560178 
- I noticed that all images with data URLs as `src` are now empty

The first issue is not a big concern. But the second issue is much more problematic. Is there a way we can keep using data URL as image sources here?
Two things:
- we have test failures because we are using data urls in some tests. :gijs already has a fix for this in scope of bug 1560178 
- I noticed that all images with data URLs as `src` are now empty

The first issue is not a big concern. But the second issue is much more problematic. Is there a way we can keep using data URL as image sources here?

For instance, would 
```
    <meta http-equiv="Content-Security-Policy" content="default-src chrome: resource:; img-src data: chrome: resource:" />
```
be acceptable here?
Two things:
- we have test failures because we are using data urls in some tests. :gijs already has a fix for this in scope of bug 1560178 
- I noticed that all images with data URLs as `src` are now empty

The first issue is not a big concern. But the second issue is much more problematic. Is there a way we can keep using data URL as image sources here?

For instance, would 
```html
    <meta http-equiv="Content-Security-Policy" 
               content="default-src chrome: resource:; img-src data: chrome: resource:" />
```
be acceptable here?
Two things:
- we have test failures because we are using data urls in some tests. :gijs already has a fix for this in scope of bug 1560178 
- I noticed that all images with data URLs as `src` are now empty

The first issue is not a big concern. But the second issue is much more problematic. Is there a way we can keep using data URL as image sources here?

For instance, would 
```html
<meta http-equiv="Content-Security-Policy" 
           content="default-src chrome: resource:; img-src data: chrome: resource:" />
```
be acceptable here?
Two things:
- we have test failures because we are using data urls in some tests. :gijs already has a fix for this in scope of bug 1560178 
- I noticed that all images with data URLs as `src` are now empty

The first issue is not a big concern. But the second issue is much more problematic. Is there a way we can keep using data URL as image sources here?

For instance, would 
```html
<meta http-equiv="Content-Security-Policy" 
      content="default-src chrome: resource:; img-src data: chrome: resource:" />
```
be acceptable here?

Back to Bug 1497197 Comment 14