As a dedicated Android supporter, I wonder when the Android webview system will be decent enough to actually work with that design pattern, because the premise is good. Shake a xoom a little and the css loses track whether it's in portrait or landscape.
I switched to Galaxy Nexus (from iPhone 3GS), where I ended up using Web apps over native apps. This is not only because the native apps tend to install costly background services that keep the phone awake, or because their Java UI without exception consumes more battery than their WebKit based equivalent, but also due to the really crappy user interface the native apps provide. The biggest trouble is with scrolling, which is jittery. I did not know about Android WebView, let's hope that native apps will start to use it for more fluid web interfaces, which, coming from Java myself, I'd say will also be easier to make (based on proper templates and libraries, e.g. Bootstrap, Modernizr, etc.).
Well, from purely an app developer's point of view, the situation with Webviews on Android is completely opposite to the one you describe! WebViews are power hogs and unbearably slow to render anything. Their only saving grace in that respect is that they share a common WebViewCore thread to perform most of the legwork behind the scenes, so you can have plenty of these with relatively low overhead, but they truly are to be avoided at all costs if your objective as a developer is low battery consumption and a responsive/fast UI.
The main problem with most android apps is that they still include a tiny WebView just for displaying ads, carrying with it its dreadful WebViewCore Rube Goldberg machine.
I find it sad that Android App developers in general are so poor that they can't figure out a way to make their apps run faster or smoother. Native is and always has been the way to go for performance, responsiveness, UI speed and power saving on those devices.
Here's to hoping that the Android team solves the horrible performance and compatibility issues on their Webview component so I can safely go back on my words in the future.