Hi people :)
I use a self compiled content shell in to embed some web content in my android app. I've extended the content/WebKit part of the browser with some app-specific features, thats why I don't just use a WebView.
The content shell has a fixed pixel size in the android application. I've observed that the content shell is now scaling (down in my case) all web contents to fit in the content shell. I can also observe this behaviour when I use the "device toolbar" from the Google Chrome dev tools on my dektop computer.
I want to disable this behaviour. The content shell should always show the left-top most area of the rendered website, scaled at 100%, no matter if the website fits into this pane. I just don't want it to scale automatically.
I know this can be done with viewport meta tags on the html side, but not all content is under my control, so I need a solution that will work independently from the content of the website.
I've already spent some time searching in the chromium source code to find out where the scaling takes place, but I can't get a clue.
Would be very nice if anybody can give me a hint ;)