<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/chrome</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 19 Jun 2013 07:23:59 GMT</pubDate>
<item>
<title>(CSS) Disable Chrome styles for form elements - valenzine</title>
<link>http://snipplr.com/view/67312/disable-chrome-styles-for-form-elements/</link>
<description><![CDATA[ <p>If Chrome is bothering with unknown borders and things like that, just apply this.</p> ]]></description>
<pubDate>Sat, 22 Sep 2012 02:14:27 GMT</pubDate>
<guid>http://snipplr.com/view/67312/disable-chrome-styles-for-form-elements/</guid>
</item>
<item>
<title>(CSS) Hide Safari / Chrome outline on active elements - simondiercks</title>
<link>http://snipplr.com/view/59441/hide-safari--chrome-outline-on-active-elements/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 05 Oct 2011 20:52:33 GMT</pubDate>
<guid>http://snipplr.com/view/59441/hide-safari--chrome-outline-on-active-elements/</guid>
</item>
<item>
<title>(JavaScript) Javascript Fullscreen API webkit - alexteg</title>
<link>http://snipplr.com/view/59020/javascript-fullscreen-api-webkit/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 23 Sep 2011 18:18:08 GMT</pubDate>
<guid>http://snipplr.com/view/59020/javascript-fullscreen-api-webkit/</guid>
</item>
<item>
<title>(jQuery) If browser is IE 6 7 8 9, Firefox, Safari, Chrome or Opera - cesarkohl</title>
<link>http://snipplr.com/view/58680/if-browser-is-ie-6-7-8-9-firefox-safari-chrome-or-opera/</link>
<description><![CDATA[ <p>The HTML simply discovers if it's IE and its version or if it's not IE.
The jQuery discovers if it's IE, Firefox, Webkit Engine (Chrome and Safari) or Opera and its version as an integer.</p> ]]></description>
<pubDate>Wed, 14 Sep 2011 23:49:24 GMT</pubDate>
<guid>http://snipplr.com/view/58680/if-browser-is-ie-6-7-8-9-firefox-safari-chrome-or-opera/</guid>
</item>
<item>
<title>(JavaScript) Canvas image scale 2x w/o anti-alias in Chrome - volvis</title>
<link>http://snipplr.com/view/55155/canvas-image-scale-2x-wo-antialias-in-chrome/</link>
<description><![CDATA[ <p>Somewhere along the road the people behind canvas decided that all image scaling is anti-aliased by default. Firefox has 'mozImageSmoothingEnabled' while Chrome et company don't.

This is a proof of concept script to resize 'virtualCanvas' two times and draw it on 'targetCanvas' w/o any antialiasing.

Proof of concept in that it still takes too long to compute in real time.
- Firefox: 1ms with native antialiasing off
- Chrome: 45ms with the script below

It might be useful to use this to scale assets before doing any compositioning. Like, load images, scale them up, position everything times two... But if yer planning to composite the canvas first and scale that to fit as the last step, I'd advice against it..</p> ]]></description>
<pubDate>Sat, 11 Jun 2011 09:39:23 GMT</pubDate>
<guid>http://snipplr.com/view/55155/canvas-image-scale-2x-wo-antialias-in-chrome/</guid>
</item>
<item>
<title>(CSS) Remove default Chrome input focus border (outline) - jurajhilje</title>
<link>http://snipplr.com/view/52313/remove-default-chrome-input-focus-border-outline/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 19 Apr 2011 21:09:23 GMT</pubDate>
<guid>http://snipplr.com/view/52313/remove-default-chrome-input-focus-border-outline/</guid>
</item>
<item>
<title>(CSS) Chrome Overlay - frkssk</title>
<link>http://snipplr.com/view/50521/chrome-overlay/</link>
<description><![CDATA[ <p>Chrome's default overlay class</p> ]]></description>
<pubDate>Fri, 11 Mar 2011 13:10:57 GMT</pubDate>
<guid>http://snipplr.com/view/50521/chrome-overlay/</guid>
</item>
<item>
<title>(CSS) CSS3 linear and radial gradient - DADU</title>
<link>http://snipplr.com/view/50034/css3-linear-and-radial-gradient/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 04 Mar 2011 12:26:26 GMT</pubDate>
<guid>http://snipplr.com/view/50034/css3-linear-and-radial-gradient/</guid>
</item>
<item>
<title>(CSS) Pseudo-class combined with sibling selector fix for Webkit - classicc</title>
<link>http://snipplr.com/view/47758/pseudoclass-combined-with-sibling-selector-fix-for-webkit/</link>
<description><![CDATA[ <p>In Webkit, when a general (x ~ y) or adjacent sibling selector (x + y) is combined with a dynamic pseudo class such as :hover, :focus, :checked, etc., the function breaks. This code snippet fixes it.</p> ]]></description>
<pubDate>Mon, 24 Jan 2011 06:53:27 GMT</pubDate>
<guid>http://snipplr.com/view/47758/pseudoclass-combined-with-sibling-selector-fix-for-webkit/</guid>
</item>
<item>
<title>(AppleScript) Refresh Frontmost Chrome Tab - iloveitaly</title>
<link>http://snipplr.com/view/45995/refresh-frontmost-chrome-tab/</link>
<description><![CDATA[ <p>Useful for developing with Chrome + TextMate</p> ]]></description>
<pubDate>Tue, 21 Dec 2010 11:31:26 GMT</pubDate>
<guid>http://snipplr.com/view/45995/refresh-frontmost-chrome-tab/</guid>
</item>
<item>
<title>(Ruby) Selenium and Ruby: How to fix "Cannot call method 'indexOf' of undefined" when opening a page in Google Chrome - noah</title>
<link>http://snipplr.com/view/45567/selenium-and-ruby-how-to-fix-cannot-call-method-indexof-of-undefined-when-opening-a-page-in-google-chrome/</link>
<description><![CDATA[ <p>Instead of just saying @selenium.start, use the following incantation to start up your Chrome instance.</p> ]]></description>
<pubDate>Fri, 10 Dec 2010 18:34:04 GMT</pubDate>
<guid>http://snipplr.com/view/45567/selenium-and-ruby-how-to-fix-cannot-call-method-indexof-of-undefined-when-opening-a-page-in-google-chrome/</guid>
</item>
<item>
<title>(Bash) Run Google Chrome with additional arguments settings under OSX - nonlinearsound</title>
<link>http://snipplr.com/view/45422/run-google-chrome-with-additional-arguments-settings-under-osx/</link>
<description><![CDATA[ <p>If you want to run Google Chrome with additional program arguments under OSX, one way, is to use "open" and its --args argument.

Use it to start Chrome with the --allow-file-access-from-files setting (or any other).

Create a link to it to run it faster next time.</p> ]]></description>
<pubDate>Wed, 08 Dec 2010 04:26:34 GMT</pubDate>
<guid>http://snipplr.com/view/45422/run-google-chrome-with-additional-arguments-settings-under-osx/</guid>
</item>
<item>
<title>(JavaScript) position div with mouse coords (onClick event) - juanduke</title>
<link>http://snipplr.com/view/42708/position-div-with-mouse-coords-onclick-event/</link>
<description><![CDATA[ <p>On click event, display a div on mouse coords.
Tested on Firefox 3.6.11, chrome 6, internet explorer 6.
Based on this source code: http://www.webdeveloper.com/forum/showthread.php?t=92007</p> ]]></description>
<pubDate>Fri, 22 Oct 2010 01:03:16 GMT</pubDate>
<guid>http://snipplr.com/view/42708/position-div-with-mouse-coords-onclick-event/</guid>
</item>
<item>
<title>(CSS) Chrome &amp;amp; Safari Specific CSS Hack - Onfire60</title>
<link>http://snipplr.com/view/41672/chrome--safari-specific-css-hack/</link>
<description><![CDATA[ <p>This snippet will allow you to enter chrome and safari specific css styling.</p> ]]></description>
<pubDate>Thu, 07 Oct 2010 00:27:48 GMT</pubDate>
<guid>http://snipplr.com/view/41672/chrome--safari-specific-css-hack/</guid>
</item>
<item>
<title>(CSS) CSS3 Chrome rounded box-shadow inset fix - Shujin</title>
<link>http://snipplr.com/view/41375/css3-chrome-rounded-boxshadow-inset-fix/</link>
<description><![CDATA[ <p>So it\'s a pretty simple fix I found out whilst coding my site (ohsogeoff).\r\n\r\nBasically, Chrome hates combining both border radius and inset box shadow! So all we do to fix this is remove the inset on webkit and reverse the direction of the shadow by applying negative values.</p> ]]></description>
<pubDate>Sun, 03 Oct 2010 06:47:19 GMT</pubDate>
<guid>http://snipplr.com/view/41375/css3-chrome-rounded-boxshadow-inset-fix/</guid>
</item>
<item>
<title>(HTML) Force IE and to use the latest rendering engine and/or Chrome Frame - f6design</title>
<link>http://snipplr.com/view/41232/force-ie-and-to-use-the-latest-rendering-engine-andor-chrome-frame/</link>
<description><![CDATA[ <p>Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame. Taken from the HTML5 Boilerplate.</p> ]]></description>
<pubDate>Fri, 01 Oct 2010 17:16:10 GMT</pubDate>
<guid>http://snipplr.com/view/41232/force-ie-and-to-use-the-latest-rendering-engine-andor-chrome-frame/</guid>
</item>
<item>
<title>(JavaScript) Chrome Conditional Javascript Statement - allnatural</title>
<link>http://snipplr.com/view/40184/chrome-conditional-javascript-statement/</link>
<description><![CDATA[ <p>Use this to create a conditional statement for chrome.</p> ]]></description>
<pubDate>Thu, 09 Sep 2010 06:41:15 GMT</pubDate>
<guid>http://snipplr.com/view/40184/chrome-conditional-javascript-statement/</guid>
</item>
<item>
<title>(CSS) CSS - CSS3 border-radius - understanding CSS3 Moz Mozilla KHTML Webkit Border Radius.css - brandonjp</title>
<link>http://snipplr.com/view/38584/css--css3-borderradius--understanding-css3-moz-mozilla-khtml-webkit-border-radiuscss/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 06 Aug 2010 03:24:27 GMT</pubDate>
<guid>http://snipplr.com/view/38584/css--css3-borderradius--understanding-css3-moz-mozilla-khtml-webkit-border-radiuscss/</guid>
</item>
<item>
<title>(CSS) Hack CSS for webkit - marcio</title>
<link>http://snipplr.com/view/30650/hack-css-for-webkit/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 31 Mar 2010 18:18:29 GMT</pubDate>
<guid>http://snipplr.com/view/30650/hack-css-for-webkit/</guid>
</item>
<item>
<title>(CSS) List of CSS browser hacks - johnloy</title>
<link>http://snipplr.com/view/28871/list-of-css-browser-hacks/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 24 Feb 2010 13:23:08 GMT</pubDate>
<guid>http://snipplr.com/view/28871/list-of-css-browser-hacks/</guid>
</item>
</channel>
</rss>