Different ways to use browser and system media resources
Posted
by utype
on Stack Overflow
See other posts from Stack Overflow
or by utype
Published on 2010-06-02T10:00:22Z
Indexed on
2010/06/02
10:04 UTC
Read the original article
Hit count: 212
Examples:
<img src="system://media/icons/logo.png" alt="OS">
<style>
img.browserIcon {background-image: url(browser://media/icons/logo.png); width: 16px; height: 16px;}
</style>
On Firefox you can access to some resources like this:
<style>
.button {background: transparent url(chrome://global/skin/button/startcap.png) no-repeat scroll left top}
</style>
Is it possible to access to rasterized font data or system sounds?
Where can I get transparent 1px gif?
© Stack Overflow or respective owner