I thought I had the wrong HTML, the wrong file paths, disabled internet connection, setting a WebChromeClient and setting the HTML doc-type to be STRICT.
In the end, I was just missing a vital call to enable it.
Allow JavaScript in your WebView by calling:
m_webview.getSettings().setJavaScriptEnabled(true);
How embarassing =P