<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom"><title>Simon Willison's Weblog: webkit</title><link href="http://simonwillison.net/" rel="alternate"/><link href="http://simonwillison.net/tags/webkit.atom" rel="self"/><id>http://simonwillison.net/</id><updated>2022-09-12T19:34:01+00:00</updated><author><name>Simon Willison</name></author><entry><title>Ladybird: A new cross-platform browser project</title><link href="https://simonwillison.net/2022/Sep/12/ladybird/#atom-tag" rel="alternate"/><published>2022-09-12T19:34:01+00:00</published><updated>2022-09-12T19:34:01+00:00</updated><id>https://simonwillison.net/2022/Sep/12/ladybird/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="https://awesomekling.github.io/Ladybird-a-new-cross-platform-browser-project/"&gt;Ladybird: A new cross-platform browser project&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Conventional wisdom is that building a new browser engine from scratch is impossible without enormous capital outlay and many people working together for many years. Andreas Kling has been disproving that for a while now with his SerenityOS from-scratch operating system project, which includes a brand new browser implemented in C++. Now Andreas is announcing his plans to extract that browser as Ladybird and make it run across multiple platforms. Andreas is a former WebKit engineer (at Nokia and then Apple) and really knows his stuff: Ladybird already passes the Acid3 test!

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="https://news.ycombinator.com/item?id=32814573"&gt;Hacker News&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/acid3"&gt;acid3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/browsers"&gt;browsers&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/andreas-kling"&gt;andreas-kling&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ladybird"&gt;ladybird&lt;/a&gt;&lt;/p&gt;



</summary><category term="acid3"/><category term="browsers"/><category term="webkit"/><category term="andreas-kling"/><category term="ladybird"/></entry><entry><title>Protecting Against HSTS Abuse</title><link href="https://simonwillison.net/2018/Mar/19/hsts-abuse/#atom-tag" rel="alternate"/><published>2018-03-19T22:21:57+00:00</published><updated>2018-03-19T22:21:57+00:00</updated><id>https://simonwillison.net/2018/Mar/19/hsts-abuse/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="https://webkit.org/blog/8146/protecting-against-hsts-abuse/"&gt;Protecting Against HSTS Abuse&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Any web feature that can be used to persist information will eventually be used to build super-cookies. In this case it’s HSTS—a web feature that allows sites to tell browsers “in the future always load this domain over HTTPS even if the request specified HTTP”. The WebKit team caught this being exploited in the wild, by encoding a user identifier in binary across 32 separate sub domains. They have a couple of mitigations in place now—I expect other browser vendors will follow suit.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="https://twitter.com/troyhunt/status/975816855838384128?s=21"&gt;@troyhunt&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/privacy"&gt;privacy&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/security"&gt;security&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ssl"&gt;ssl&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="privacy"/><category term="security"/><category term="ssl"/><category term="webkit"/></entry><entry><title>What data structures are used to implement the DOM tree?</title><link href="https://simonwillison.net/2013/Feb/17/what-data-structures-are/#atom-tag" rel="alternate"/><published>2013-02-17T13:31:00+00:00</published><updated>2013-02-17T13:31:00+00:00</updated><id>https://simonwillison.net/2013/Feb/17/what-data-structures-are/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;em&gt;My answer to &lt;a href="https://www.quora.com/What-data-structures-are-used-to-implement-the-DOM-tree/answer/Simon-Willison"&gt;What data structures are used to implement the DOM tree?&lt;/a&gt; on Quora&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You may enjoy this post from Hixie back in 2002 which illustrates how different browsers deal with incorrectly nested HTML. IE6 used to create a tree that wasn't actually a tree! &lt;span&gt;&lt;a href="http://ln.hixie.ch/?count=1&amp;amp;start=1037910467"&gt;http://ln.hixie.ch/?start=103791...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/chrome"&gt;chrome&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/data-structures"&gt;data-structures&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/firefox"&gt;firefox&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/html"&gt;html&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/internet-explorer"&gt;internet-explorer&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/opera"&gt;opera&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/quora"&gt;quora&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/firefoxos"&gt;firefoxos&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="chrome"/><category term="data-structures"/><category term="firefox"/><category term="html"/><category term="internet-explorer"/><category term="opera"/><category term="webkit"/><category term="quora"/><category term="firefoxos"/></entry><entry><title>Visualizing WebKit's hardware acceleration</title><link href="https://simonwillison.net/2011/Jun/27/webkit/#atom-tag" rel="alternate"/><published>2011-06-27T10:31:00+00:00</published><updated>2011-06-27T10:31:00+00:00</updated><id>https://simonwillison.net/2011/Jun/27/webkit/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://mir.aculo.us/2011/02/08/visualizing-webkits-hardware-acceleration/"&gt;Visualizing WebKit&amp;#x27;s hardware acceleration&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Command line flags for launching Safari (and the iOS simulator) in a way that highlights areas of the screen that are being hardware accelerated—particularly useful if you are using the “-webkit-transform: translate3d(0,0,0)” trick.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/css"&gt;css&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ios"&gt;ios&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;&lt;/p&gt;



</summary><category term="css"/><category term="safari"/><category term="webkit"/><category term="ios"/><category term="recovered"/></entry><entry><title>WebKit is Dropping HTML5 "popstate" Events</title><link href="https://simonwillison.net/2010/Oct/30/webkit/#atom-tag" rel="alternate"/><published>2010-10-30T07:41:00+00:00</published><updated>2010-10-30T07:41:00+00:00</updated><id>https://simonwillison.net/2010/Oct/30/webkit/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.bcherry.net/playground/pushstate"&gt;WebKit is Dropping HTML5 &amp;quot;popstate&amp;quot; Events&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Really nasty bug with WebKit’s pushState support, discovered by Ben Cherry from Twitter. popState events get dropped if the user navigates while an outbound network request is in progress.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://www.quora.com/Twitter-com-2010-Redesign/What-things-do-you-not-like-about-newTwitter/answer/Simon-Willison"&gt;A comment from Kevin Cheng on Quora&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/bugs"&gt;bugs&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/html5"&gt;html5&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/twitter"&gt;twitter&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/pushstate"&gt;pushstate&lt;/a&gt;&lt;/p&gt;



</summary><category term="bugs"/><category term="html5"/><category term="twitter"/><category term="webkit"/><category term="recovered"/><category term="pushstate"/></entry><entry><title>Surfin' Safari: Announcing... MathML!</title><link href="https://simonwillison.net/2010/Aug/18/mathml/#atom-tag" rel="alternate"/><published>2010-08-18T13:49:00+00:00</published><updated>2010-08-18T13:49:00+00:00</updated><id>https://simonwillison.net/2010/Aug/18/mathml/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/1366/announcing%E2%80%A6mathml/"&gt;Surfin&amp;#x27; Safari: Announcing... MathML!&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
MathML is now supported by the WebKit nightlies. Worth checking out for the typographical discussion that’s broken out in the comments.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/mathml"&gt;mathml&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/typography"&gt;typography&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;&lt;/p&gt;



</summary><category term="mathml"/><category term="safari"/><category term="typography"/><category term="webkit"/><category term="recovered"/></entry><entry><title>SublimeVideo - HTML5 Video Player</title><link href="https://simonwillison.net/2010/Feb/2/sublime/#atom-tag" rel="alternate"/><published>2010-02-02T09:50:43+00:00</published><updated>2010-02-02T09:50:43+00:00</updated><id>https://simonwillison.net/2010/Feb/2/sublime/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://jilion.com/sublime/video"&gt;SublimeVideo - HTML5 Video Player&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Still a fair way to go (no Firefox support yet, and they plan to add a Flash fallback for IE) but in Safari this is pretty extraordinary. Smooth video, beautiful UI, full window mode and full screen mode in the latest WebKit nightlies. I’d go as far as saying that this is the nicest online video implementation I’ve seen (at least on the Mac).


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/flash"&gt;flash&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/html5"&gt;html5&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/video"&gt;video&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="flash"/><category term="html5"/><category term="safari"/><category term="video"/><category term="webkit"/></entry><entry><title>Going Nuts with CSS Transitions</title><link href="https://simonwillison.net/2009/Dec/14/transitions/#atom-tag" rel="alternate"/><published>2009-12-14T13:16:34+00:00</published><updated>2009-12-14T13:16:34+00:00</updated><id>https://simonwillison.net/2009/Dec/14/transitions/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://24ways.org/2009/going-nuts-with-css-transitions"&gt;Going Nuts with CSS Transitions&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Nat’s article for this year’s 24ways—adding special effects to images using CSS rotation, box shadows and the magical -webkit-transition property.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/24-ways"&gt;24-ways&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/animation"&gt;animation&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/css"&gt;css&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/natalie-downe"&gt;natalie-downe&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/rotation"&gt;rotation&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="24-ways"/><category term="animation"/><category term="css"/><category term="natalie-downe"/><category term="rotation"/><category term="webkit"/></entry><entry><title>WebKit, Mobile, and Progress</title><link href="https://simonwillison.net/2009/Oct/10/webkit/#atom-tag" rel="alternate"/><published>2009-10-10T00:28:31+00:00</published><updated>2009-10-10T00:28:31+00:00</updated><id>https://simonwillison.net/2009/Oct/10/webkit/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://alex.dojotoolkit.org/2009/10/webkit-mobile-and-progress/"&gt;WebKit, Mobile, and Progress&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Alex Russell responds to PPK’s analysis of the many different WebKit variants in today’s mobile phones, pointing out that the replacement cycle and increasing quality of WebKit in more recent phones means the situation still looks pretty good.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/alex-russell"&gt;alex-russell&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/browsers"&gt;browsers&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mobile"&gt;mobile&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ppk"&gt;ppk&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="alex-russell"/><category term="browsers"/><category term="mobile"/><category term="ppk"/><category term="webkit"/></entry><entry><title>There is no WebKit on Mobile</title><link href="https://simonwillison.net/2009/Oct/7/quirksblog/#atom-tag" rel="alternate"/><published>2009-10-07T12:23:26+00:00</published><updated>2009-10-07T12:23:26+00:00</updated><id>https://simonwillison.net/2009/Oct/7/quirksblog/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.quirksmode.org/blog/archives/2009/10/there_is_no_web.html"&gt;There is no WebKit on Mobile&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
PPK ran 27 tests against 19 different WebKit-on-mobile implementations and found enormous disparities between the levels of support in currently available mobile phones.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/mobile"&gt;mobile&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ppk"&gt;ppk&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/standards"&gt;standards&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/testing"&gt;testing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="mobile"/><category term="ppk"/><category term="standards"/><category term="testing"/><category term="webkit"/></entry><entry><title>Introducing Google Chrome Frame</title><link href="https://simonwillison.net/2009/Sep/23/chromeframe/#atom-tag" rel="alternate"/><published>2009-09-23T09:57:59+00:00</published><updated>2009-09-23T09:57:59+00:00</updated><id>https://simonwillison.net/2009/Sep/23/chromeframe/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://blog.chromium.org/2009/09/introducing-google-chrome-frame.html"&gt;Introducing Google Chrome Frame&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Here’s what Alex Russell has been up to at Google: An IE plugin (for 6, 7 and 8 on all Windows versions) which embeds the Google Chrome rendering engine—sites can then opt-in to using it by including a X-UA-Compatible meta tag. Seems to be aimed at corporate networks which mandate IE for badly written intranet applications—they can roll this out without retraining users to use another browser or breaking their existing in house apps.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/alex-russell"&gt;alex-russell&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/chrome"&gt;chrome&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/chromeframe"&gt;chromeframe&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/google"&gt;google&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/internet-explorer"&gt;internet-explorer&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/xuacompatible"&gt;xuacompatible&lt;/a&gt;&lt;/p&gt;



</summary><category term="alex-russell"/><category term="chrome"/><category term="chromeframe"/><category term="google"/><category term="internet-explorer"/><category term="webkit"/><category term="xuacompatible"/></entry><entry><title>CSS 3: Progress!</title><link href="https://simonwillison.net/2009/Aug/22/css/#atom-tag" rel="alternate"/><published>2009-08-22T11:52:17+00:00</published><updated>2009-08-22T11:52:17+00:00</updated><id>https://simonwillison.net/2009/Aug/22/css/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://alex.dojotoolkit.org/2009/08/css-3-progress/"&gt;CSS 3: Progress!&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Alex Russell on the new exciting stuff going in to CSS 3 based on real-world implementations in the modern set of browsers. Of particular interest is the new Flexible Box specification, which specifies new layout primitives hbox and vbox (as seen in XUL) and is already supported by both WebKit and Gecko.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/alex-russell"&gt;alex-russell&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/browsers"&gt;browsers&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/css"&gt;css&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/css3"&gt;css3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/flexiblebox"&gt;flexiblebox&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/gecko"&gt;gecko&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/hbox"&gt;hbox&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/standards"&gt;standards&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/vbox"&gt;vbox&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="alex-russell"/><category term="browsers"/><category term="css"/><category term="css3"/><category term="flexiblebox"/><category term="gecko"/><category term="hbox"/><category term="standards"/><category term="vbox"/><category term="webkit"/></entry><entry><title>Dinky pocketbooks with WebKit transforms</title><link href="https://simonwillison.net/2009/May/22/dinky/#atom-tag" rel="alternate"/><published>2009-05-22T00:33:49+00:00</published><updated>2009-05-22T00:33:49+00:00</updated><id>https://simonwillison.net/2009/May/22/dinky/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://natbat.net/2009/May/21/pocketbooks/"&gt;Dinky pocketbooks with WebKit transforms&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Nat used 90 degree CSS transform rotations in print stylesheets for WebKit and Safari to create printable cut-out-and-fold pocketbooks from A4 pages. Very neat.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/css"&gt;css&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/csstransforms"&gt;csstransforms&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/natalie-downe"&gt;natalie-downe&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/pocketbooks"&gt;pocketbooks&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/printstyles"&gt;printstyles&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/rotation"&gt;rotation&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="css"/><category term="csstransforms"/><category term="natalie-downe"/><category term="pocketbooks"/><category term="printstyles"/><category term="rotation"/><category term="safari"/><category term="webkit"/></entry><entry><title>Building a Better JavaScript Profiler with WebKit</title><link href="https://simonwillison.net/2009/Apr/29/building/#atom-tag" rel="alternate"/><published>2009-04-29T23:57:26+00:00</published><updated>2009-04-29T23:57:26+00:00</updated><id>https://simonwillison.net/2009/Apr/29/building/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.alertdebugging.com/2009/04/29/building-a-better-javascript-profiler-with-webkit/"&gt;Building a Better JavaScript Profiler with WebKit&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Clever hack from Francisco Tolmasky which solves the problem of JavaScript profilers showing ? as the name of any anonymous functions. He patched the WebKit profiler to look for a displayName attribute on a function and show that as the function name instead.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/francisco-tolmasky"&gt;francisco-tolmasky&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/profiling"&gt;profiling&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="francisco-tolmasky"/><category term="javascript"/><category term="profiling"/><category term="webkit"/></entry><entry><title>Google Chrome, the comic book</title><link href="https://simonwillison.net/2008/Sep/1/google/#atom-tag" rel="alternate"/><published>2008-09-01T19:45:27+00:00</published><updated>2008-09-01T19:45:27+00:00</updated><id>https://simonwillison.net/2008/Sep/1/google/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://blogoscoped.com/google-chrome/"&gt;Google Chrome, the comic book&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Google have finally announced a browser project, though it’s currently vapourware (or rather comicware), existing only as a Scott McCloud comic. Still, it looks fascinating—entirely open source, WebKit with a brand new JavaScript VM, every tab running in a separate process for smarter memory usage and some new UI concepts and anti-pishing measures thrown in as well.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://blogoscoped.com/archive/2008-09-01-n47.html"&gt;Google Blogoscoped&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/antiphishing"&gt;antiphishing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/chrome"&gt;chrome&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/google"&gt;google&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/googlebrowser"&gt;googlebrowser&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/phishing"&gt;phishing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/scott-mccloud"&gt;scott-mccloud&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/usability"&gt;usability&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="antiphishing"/><category term="chrome"/><category term="google"/><category term="googlebrowser"/><category term="javascript"/><category term="phishing"/><category term="scott-mccloud"/><category term="usability"/><category term="webkit"/></entry><entry><title>SquirrelFish</title><link href="https://simonwillison.net/2008/Jun/3/squirrelfish/#atom-tag" rel="alternate"/><published>2008-06-03T07:57:11+00:00</published><updated>2008-06-03T07:57:11+00:00</updated><id>https://simonwillison.net/2008/Jun/3/squirrelfish/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/189/announcing-squirrelfish/"&gt;SquirrelFish&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
WebKit’s JavaScript engine was no slouch, but that hasn’t stopped them from replacing it with a brand new “register-based, direct-threaded, high-level bytecode engine, with a sliding register window calling convention”. It runs 1.6x faster and has the Best Logo Ever.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/bytecode"&gt;bytecode&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/logo"&gt;logo&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/performance"&gt;performance&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/squirrelfish"&gt;squirrelfish&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="bytecode"/><category term="javascript"/><category term="logo"/><category term="performance"/><category term="safari"/><category term="squirrelfish"/><category term="webkit"/></entry><entry><title>CSS Variables</title><link href="https://simonwillison.net/2008/Apr/25/css/#atom-tag" rel="alternate"/><published>2008-04-25T23:26:46+00:00</published><updated>2008-04-25T23:26:46+00:00</updated><id>https://simonwillison.net/2008/Apr/25/css/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://disruptive-innovations.com/zoo/cssvariables/"&gt;CSS Variables&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Hooray! My number one requested CSS feature (and I know I’m not alone), proposed by Daniel Glazman and David Hyatt so I imagine we’ll see it trialled in WebKit pretty soon.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/css"&gt;css&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/daniel-glazman"&gt;daniel-glazman&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/david-hyatt"&gt;david-hyatt&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/variables"&gt;variables&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/css-custom-properties"&gt;css-custom-properties&lt;/a&gt;&lt;/p&gt;



</summary><category term="css"/><category term="daniel-glazman"/><category term="david-hyatt"/><category term="variables"/><category term="webkit"/><category term="css-custom-properties"/></entry><entry><title>Quoting Mike Shaver</title><link href="https://simonwillison.net/2008/Mar/27/shaver/#atom-tag" rel="alternate"/><published>2008-03-27T13:35:53+00:00</published><updated>2008-03-27T13:35:53+00:00</updated><id>https://simonwillison.net/2008/Mar/27/shaver/#atom-tag</id><summary type="html">
    &lt;blockquote cite="http://shaver.off.net/diary/2008/03/27/the-missed-opportunity-of-acid-3/"&gt;&lt;p&gt;Ian's Acid 3, unlike its predecessors, is not about establishing a baseline of useful web capabilities. It's quite explicitly about making browser developers jump - Ian specifically sought out tests that were broken in WebKit, Opera, and Gecko, perhaps out of a twisted attempt at fairness. But the Acid tests shouldn't be fair to browsers, they should be fair to the web; they should be based on how good the web will be as a platform if all browsers conform, not about how far any given browser has to stretch to get there.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p class="cite"&gt;&amp;mdash; &lt;a href="http://shaver.off.net/diary/2008/03/27/the-missed-opportunity-of-acid-3/"&gt;Mike Shaver&lt;/a&gt;&lt;/p&gt;

    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/acid3"&gt;acid3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/browsers"&gt;browsers&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/gecko"&gt;gecko&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ian-hickson"&gt;ian-hickson&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mike-shaver"&gt;mike-shaver&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/opera"&gt;opera&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/web-standards"&gt;web-standards&lt;/a&gt;&lt;/p&gt;



</summary><category term="acid3"/><category term="browsers"/><category term="gecko"/><category term="ian-hickson"/><category term="mike-shaver"/><category term="opera"/><category term="webkit"/><category term="web-standards"/></entry><entry><title>querySelector and querySelectorAll</title><link href="https://simonwillison.net/2008/Feb/8/surfinu/#atom-tag" rel="alternate"/><published>2008-02-08T11:21:03+00:00</published><updated>2008-02-08T11:21:03+00:00</updated><id>https://simonwillison.net/2008/Feb/8/surfinu/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/156/queryselector-and-queryselectorall/"&gt;querySelector and querySelectorAll&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
WebKit now supports the W3C Selectors API. Expect the various JavaScript libraries to add this as an optimisation to achieve massive speedups (Prototype are already working on it).


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/libraries"&gt;libraries&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/prototype-js"&gt;prototype-js&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/queryselector"&gt;queryselector&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/selectors"&gt;selectors&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/w3c"&gt;w3c&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="javascript"/><category term="libraries"/><category term="prototype-js"/><category term="queryselector"/><category term="safari"/><category term="selectors"/><category term="w3c"/><category term="webkit"/></entry><entry><title>Safari CSS Reference</title><link href="https://simonwillison.net/2007/Nov/22/safari/#atom-tag" rel="alternate"/><published>2007-11-22T23:51:42+00:00</published><updated>2007-11-22T23:51:42+00:00</updated><id>https://simonwillison.net/2007/Nov/22/safari/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://developer.apple.com/documentation/AppleApplications/Reference/SafariCSSRef/index.html"&gt;Safari CSS Reference&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Official documentation covering the CSS properties supported by Safari, including the -webkit proprietary extensions.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/browsers"&gt;browsers&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/css"&gt;css&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/documentation"&gt;documentation&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="browsers"/><category term="css"/><category term="documentation"/><category term="safari"/><category term="webkit"/></entry><entry><title>Ten New Things in WebKit 3</title><link href="https://simonwillison.net/2007/Nov/16/surfinu/#atom-tag" rel="alternate"/><published>2007-11-16T01:19:52+00:00</published><updated>2007-11-16T01:19:52+00:00</updated><id>https://simonwillison.net/2007/Nov/16/surfinu/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/122/webkit-3-10-new-things/"&gt;Ten New Things in WebKit 3&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Does “incremental updates for persistent server connections” for XMLHttpRequest mean Safari now has native support for Comet?


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/ajax"&gt;ajax&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/comet"&gt;comet&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari3"&gt;safari3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/xmlhttprequest"&gt;xmlhttprequest&lt;/a&gt;&lt;/p&gt;



</summary><category term="ajax"/><category term="comet"/><category term="javascript"/><category term="safari"/><category term="safari3"/><category term="webkit"/><category term="xmlhttprequest"/></entry><entry><title>HTML5 Media Support in WebKit</title><link href="https://simonwillison.net/2007/Nov/12/surfin/#atom-tag" rel="alternate"/><published>2007-11-12T23:21:40+00:00</published><updated>2007-11-12T23:21:40+00:00</updated><id>https://simonwillison.net/2007/Nov/12/surfin/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/140/html5-media-support/"&gt;HTML5 Media Support in WebKit&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
WebKit continues to lead the pack when it comes to trying out new HTML5 proposals. The new audio and video elements make embedding media easy, and provide a neat listener API for hooking in to “playback ended” events.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/audio"&gt;audio&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/events"&gt;events&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/html5"&gt;html5&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/macos"&gt;macos&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/media"&gt;media&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/video"&gt;video&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="audio"/><category term="events"/><category term="html5"/><category term="javascript"/><category term="macos"/><category term="media"/><category term="safari"/><category term="video"/><category term="webkit"/></entry><entry><title>CSS Transforms</title><link href="https://simonwillison.net/2007/Oct/26/transforms/#atom-tag" rel="alternate"/><published>2007-10-26T21:45:01+00:00</published><updated>2007-10-26T21:45:01+00:00</updated><id>https://simonwillison.net/2007/Oct/26/transforms/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/130/css-transforms/"&gt;CSS Transforms&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
WebKit can now do transforms (scale, rotate, translate and skew) in CSS via a new -webkit-transform property. Transforms behave like position relative in that they don’t affect the layout of the page. You can also provide a full affine transform matrix as a shortcut.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/affinetransformation"&gt;affinetransformation&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/apple"&gt;apple&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/browsers"&gt;browsers&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/css"&gt;css&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/graphics"&gt;graphics&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/matrix"&gt;matrix&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/transforms"&gt;transforms&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="affinetransformation"/><category term="apple"/><category term="browsers"/><category term="css"/><category term="graphics"/><category term="matrix"/><category term="safari"/><category term="transforms"/><category term="webkit"/></entry><entry><title>Site-specific browsers and GreaseKit</title><link href="https://simonwillison.net/2007/Oct/25/sitespecific/#atom-tag" rel="alternate"/><published>2007-10-25T07:56:01+00:00</published><updated>2007-10-25T07:56:01+00:00</updated><id>https://simonwillison.net/2007/Oct/25/sitespecific/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://factoryjoe.com/blog/2007/10/23/site-specific-browsers-and-greasekit/"&gt;Site-specific browsers and GreaseKit&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
New site-specific browser tool which lets you include a bunch of Greasemonkey scripts. For me, the killer feature of site-specific browsers is still cookie isolation (to minimise the impact of XSS and CSRF holes) but none of the current batch of tools advertise this as a feature, and most seem to want to share the system-wide cookie jar.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/chris-messina"&gt;chris-messina&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cookies"&gt;cookies&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/csrf"&gt;csrf&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/greasekit"&gt;greasekit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/greasemonkey"&gt;greasemonkey&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/security"&gt;security&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/sitespecificbrowsers"&gt;sitespecificbrowsers&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/xss"&gt;xss&lt;/a&gt;&lt;/p&gt;



</summary><category term="chris-messina"/><category term="cookies"/><category term="csrf"/><category term="greasekit"/><category term="greasemonkey"/><category term="javascript"/><category term="safari"/><category term="security"/><category term="sitespecificbrowsers"/><category term="webkit"/><category term="xss"/></entry><entry><title>WebKit Does HTML5 Client-side Database Storage</title><link href="https://simonwillison.net/2007/Oct/20/surfinu/#atom-tag" rel="alternate"/><published>2007-10-20T12:03:21+00:00</published><updated>2007-10-20T12:03:21+00:00</updated><id>https://simonwillison.net/2007/Oct/20/surfinu/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/126/webkit-does-html5-client-side-database-storage/"&gt;WebKit Does HTML5 Client-side Database Storage&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
SQLite strikes again. The WebKit team have included a neat update to their Web Inspector that lets you browse and modify your client-side databases.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/apple"&gt;apple&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/html5"&gt;html5&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/offline"&gt;offline&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/sqlite"&gt;sqlite&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webinspector"&gt;webinspector&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/whatwg"&gt;whatwg&lt;/a&gt;&lt;/p&gt;



</summary><category term="apple"/><category term="html5"/><category term="offline"/><category term="safari"/><category term="sqlite"/><category term="webinspector"/><category term="webkit"/><category term="whatwg"/></entry><entry><title>Native DOMContentLoaded is coming to Safari</title><link href="https://simonwillison.net/2007/Oct/8/bug/#atom-tag" rel="alternate"/><published>2007-10-08T01:07:01+00:00</published><updated>2007-10-08T01:07:01+00:00</updated><id>https://simonwillison.net/2007/Oct/8/bug/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://bugs.webkit.org/show_bug.cgi?id=5122"&gt;Native DOMContentLoaded is coming to Safari&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
I filed this bug over two years ago. They’ve just committed the resulting patch to trunk.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/browsers"&gt;browsers&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/domcontentloaded"&gt;domcontentloaded&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/onload"&gt;onload&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="browsers"/><category term="domcontentloaded"/><category term="javascript"/><category term="onload"/><category term="safari"/><category term="webkit"/></entry><entry><title>Yet another one more thing... a new Web Inspector!</title><link href="https://simonwillison.net/2007/Jun/21/surfinu/#atom-tag" rel="alternate"/><published>2007-06-21T11:49:01+00:00</published><updated>2007-06-21T11:49:01+00:00</updated><id>https://simonwillison.net/2007/Jun/21/surfinu/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/108/yet-another-one-more-thing-a-new-web-inspector/"&gt;Yet another one more thing... a new Web Inspector!&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
I installed the latest nightly but I couldn’t find the inspector (or work out how to turn on the debug menu). Anyone know what I’m doing wrong?


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/safari"&gt;safari&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="safari"/><category term="webkit"/></entry><entry><title>Introducing text-stroke</title><link href="https://simonwillison.net/2006/Dec/21/webkit/#atom-tag" rel="alternate"/><published>2006-12-21T10:34:32+00:00</published><updated>2006-12-21T10:34:32+00:00</updated><id>https://simonwillison.net/2006/Dec/21/webkit/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://webkit.org/blog/?p=85"&gt;Introducing text-stroke&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Webkit has some sexy new CSS properties: -webkit-text-fill-color, -webkit-text-stroke-color, -webkit-text-stroke-width.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/css"&gt;css&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/webkit"&gt;webkit&lt;/a&gt;&lt;/p&gt;



</summary><category term="css"/><category term="webkit"/></entry></feed>