| Summary: | Memory Leaks by http://www.marca.com/ | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Asadullah Ansari <asadullah.ansari> | ||||
| Component: | WebCore Misc. | Assignee: | Nobody <webkit-unassigned> | ||||
| Status: | NEW --- | ||||||
| Severity: | Critical | CC: | mitz, mmaxfield | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Attachments: |
|
||||||
|
Description
Asadullah Ansari
2014-11-14 04:14:13 PST
This issue is localized with simple test cases
<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: myFirstFont;
src: url(http://fonts.gstatic.com/s/lato/v11/9k-RPmcnxYEPm8CNFsH2gg.woff)
}
div {
font-family: myFirstFont;
}
</style>
</head>
<body>
<div>With CSS3, websites can finally use fonts other than the pre selected "web-safe" fonts.</div>
<p><b>Note:</b> Internet Explorer 8 and earlier, do not support the @font-face rule with the WOFF format (only support for EOT format).</p>
</body>
</html>
Leaks is due to CSS @font-face .
(In reply to comment #1) > This issue is localized with simple test cases > > <!DOCTYPE html> > <html> > <head> > <style> > @font-face { > font-family: myFirstFont; > src: url(http://fonts.gstatic.com/s/lato/v11/9k-RPmcnxYEPm8CNFsH2gg.woff) > } > > div { > font-family: myFirstFont; > } > </style> > </head> > <body> > > <div>With CSS3, websites can finally use fonts other than the pre selected > "web-safe" fonts.</div> > > <p><b>Note:</b> Internet Explorer 8 and earlier, do not support the > @font-face rule with the WOFF format (only support for EOT format).</p> > > </body> > </html> > > > Leaks is due to CSS @font-face . above use cases is one monor leaks but other places need to check. |