Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(925)

Unified Diff: Source/web/tests/data/viewport_emulation.html

Issue 1343843004: [DevTools] Emulate hover and pointer types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed settings getters Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/tests/data/device_emulation.html ('k') | public/web/WebSettings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/data/viewport_emulation.html
diff --git a/Source/web/tests/data/viewport_emulation.html b/Source/web/tests/data/viewport_emulation.html
deleted file mode 100644
index 94dc6b731f045874185063c30a6b2e9c4dfea376..0000000000000000000000000000000000000000
--- a/Source/web/tests/data/viewport_emulation.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html>
-<head>
-<style>
-body {
- margin: 0;
- min-height: 1000px;
-}
-#test {
- width: 100px;
- height: 100px;
-}
-@media all and (device-width:700px)
-{
- #test { width: 300px; }
-}
-@media all and (max-device-width:699px)
-{
- #test { width: 200px; }
-}
-@media all and (min-device-width:701px)
-{
- #test { width: 400px; }
-}
-@media all and (device-height:500px)
-{
- #test { height: 300px; }
-}
-@media all and (max-device-height:499px)
-{
- #test { height: 200px; }
-}
-@media all and (min-device-height:501px)
-{
- #test { height: 400px; }
-}
-</style>
-
-<script>
-function dumpSize()
-{
- var div = document.querySelector("#test");
- return div.offsetWidth + "x" + div.offsetHeight;
-}
-</script>
-</head>
-<body>
-<div id="test"></div>
-</body>
-</html>
« no previous file with comments | « Source/web/tests/data/device_emulation.html ('k') | public/web/WebSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698