summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/html
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html')
-rw-r--r--Source/WebCore/html/HTMLBodyElement.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/Source/WebCore/html/HTMLBodyElement.cpp b/Source/WebCore/html/HTMLBodyElement.cpp
index 421e28e..5e6fd82 100644
--- a/Source/WebCore/html/HTMLBodyElement.cpp
+++ b/Source/WebCore/html/HTMLBodyElement.cpp
@@ -36,11 +36,6 @@
#include "HTMLParserIdioms.h"
#include "ScriptEventListener.h"
-#ifdef ANDROID_META_SUPPORT
-#include "PlatformBridge.h"
-#include "Settings.h"
-#endif
-
namespace WebCore {
using namespace HTMLNames;
@@ -199,18 +194,6 @@ void HTMLBodyElement::insertedIntoDocument()
setAttribute(marginheightAttr, String::number(marginHeight));
}
-#ifdef ANDROID_META_SUPPORT
- Settings * settings = document()->settings();
- if (settings) {
- String host = document()->baseURI().host().lower();
- if (settings->viewportWidth() == -1 && (host.startsWith("m.") || host.startsWith("mobile.")
- || host.startsWith("wap.") || host.contains(".m.") || host.contains(".mobile.") || host.contains(".wap."))) {
- // fit mobile sites directly in the screen
- document()->processViewport("width=device-width");
- }
- }
-#endif
-
// FIXME: This call to scheduleRelayout should not be needed here.
// But without it we hang during WebKit tests; need to fix that and remove this.
if (FrameView* view = document()->view())