Index: grit/gather/chrome_html_unittest.py |
=================================================================== |
--- grit/gather/chrome_html_unittest.py (revision 57) |
+++ grit/gather/chrome_html_unittest.py (working copy) |
@@ -71,7 +71,7 @@ |
<head> |
<style> |
.image { |
- background: -webkit-image-set(url("data:image/png;base64,UE5HIERBVEE=") 1x, url("data:image/png;base64,MS40eCBQTkcgREFUQQ==") 1.4x, url("data:image/png;base64,MS44eCBQTkcgREFUQQ==") 1.8x); |
+ background: -webkit-image-set(url('data:image/png;base64,UE5HIERBVEE=') 1x, url('data:image/png;base64,MS40eCBQTkcgREFUQQ==') 1.4x, url('data:image/png;base64,MS44eCBQTkcgREFUQQ==') 1.8x); |
} |
</style> |
</head> |
@@ -106,7 +106,7 @@ |
self.failUnlessEqual(StandardizeHtml(html.GetData('en', 'utf-8')), |
StandardizeHtml(''' |
.image { |
- background: -webkit-image-set(url("test.png") 1x, url("1.4x/test.png") 1.4x, url("1.8x/test.png") 1.8x); |
+ background: -webkit-image-set(url('test.png') 1x, url('1.4x/test.png') 1.4x, url('1.8x/test.png') 1.8x); |
} |
''')) |
tmp_dir.CleanUp() |
@@ -147,7 +147,7 @@ |
<head> |
<style> |
.image { |
- background: -webkit-image-set(url("data:image/png;base64,UE5HIERBVEE=") 1x); |
+ background: -webkit-image-set(url('data:image/png;base64,UE5HIERBVEE=') 1x); |
} |
</style> |
</head> |
@@ -192,7 +192,7 @@ |
<head> |
<style> |
.image { |
- background: -webkit-image-set(url("chrome://theme/IDR_RESOURCE_NAME") 1x, url("chrome://theme/IDR_RESOURCE_NAME@2x") 2x); |
+ background: -webkit-image-set(url('chrome://theme/IDR_RESOURCE_NAME') 1x, url('chrome://theme/IDR_RESOURCE_NAME@2x') 2x); |
} |
</style> |
</head> |
@@ -245,8 +245,8 @@ |
<head> |
<style> |
.image { |
- background: -webkit-image-set(url("data:image/png;base64,UE5HIERBVEE=") 1x, |
- url("data:image/png;base64,MS44eCBQTkcgREFUQQ==") 1.8x); |
+ background: -webkit-image-set(url('data:image/png;base64,UE5HIERBVEE=') 1x, |
+ url('data:image/png;base64,MS44eCBQTkcgREFUQQ==') 1.8x); |
} |
</style> |
</head> |