Skip to content

Commit c89077a

Browse files
committed
Rename tests to demos
1 parent cf79ecb commit c89077a

File tree

15 files changed

+17
-19
lines changed

15 files changed

+17
-19
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ Work on the [viewport investigation project](https://github.com/web-platform-tes
44

55
> To sort out any confusion about what “viewport” means, and what browsers _(especially on mobile devices)_ should be doing with various viewport measurements & sizing. To make recommendations for what should change to improve interoperability.
66
7-
## Tests
7+
## Demos
88

9-
There are a bunch of test pages available that help you test the behavior of certain aspects in browsers. These test page are published at [https://interop-2022-viewport.netlify.app/](https://interop-2022-viewport.netlify.app/)
10-
11-
Included tests:
9+
There are a bunch of demos available to debug and test the behavior of certain viewport-related aspects in browsers. These demos are published at [https://interop-2022-viewport.netlify.app/](https://interop-2022-viewport.netlify.app/)
1210

1311
- [Initial Containing Block (ICB)](https://interop-2022-viewport.netlify.app/individual/icb/)
1412
- [Layout Viewport](https://interop-2022-viewport.netlify.app/individual/layout-viewport/)
@@ -18,12 +16,12 @@ Included tests:
1816
- [Viewport Units + -webkit-fill-available](https://devinrousso.com/demo/WebKit/css/viewport-units.html) _(external)_
1917
- [ICB + Fixed Viewport + Visual Viewport + Event Debugger](https://interop-2022-viewport.netlify.app/combined/icb-fixed-visual/)
2018

21-
The source of the non-external tests is [included in this repository’s `test` folder](./tests).
2219

2320
## Findings
2421

2522
- TODO
2623

24+
The source of the non-external demos is [included in this repository’s `demos` folder](./demos).
2725
## Recommendations
2826

2927
- TODO
File renamed without changes.

tests/README.md renamed to demos/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Interop 2022: Viewport: Tests
1+
# Interop 2022: Viewport: Demos
22

3-
A collection of pages with tests for the Interop 2022 Viewport Investigation Effort
3+
A collection of demos that allow you to debug and test the behavior of certain viewport and viewport-related aspects, part of the Interop 2022 Viewport Investigation Effort
44

55
- View online: https://interop-2022-viewport.netlify.app/
66
- Tested Scenarios + Results: https://goo.gle/interop-2022-viewport-testresults
File renamed without changes.

tests/package-lock.json renamed to demos/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/package.json renamed to demos/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "interop-2022-viewport-tests",
2+
"name": "interop-2022-viewport-demos",
33
"version": "1.0.0",
4-
"description": "A collection of pages with tests for the Interop 2022 Viewport Investigation Effort",
4+
"description": "A collection of demos that allow you to debug and test the behavior of certain viewport and viewport-related aspects",
55
"scripts": {
66
"start": "serve src",
77
"deploy": "netlify deploy --prod",
File renamed without changes.

tests/src/combined/viewport-units/index.html renamed to demos/src/combined/viewport-units/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Viewport Units Debugger – Interop 2022 Viewport Investigation Effort Test Pages</title>
5+
<title>Viewport Units Debugger – Interop 2022 Viewport Investigation Effort Demo Pages</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link rel="stylesheet" href="../../base.css" />
88
<style>
File renamed without changes.

tests/src/index.html renamed to demos/src/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Interop 2022 Viewport Investigation Effort Test Pages</title>
5+
<title>Interop 2022 Viewport Investigation Effort Demo Pages</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link rel="stylesheet" href="base.css" />
88
<style>
@@ -37,9 +37,9 @@
3737
</head>
3838
<body translate="no" data-vv-positioning="absolute">
3939
<main>
40-
<h1>Interop 2022 Viewport Investigation Effort Test Pages</h1>
40+
<h1>Interop 2022 Viewport Investigation Effort Demo Pages</h1>
4141

42-
<p>A collection of test pages that allow you to test behavior of certain viewport and viewport-related aspects.</p>
42+
<p>A collection of demos that allow you to debug and test the behavior of certain viewport and viewport-related aspects.</p>
4343

4444
<h2>Individual Viewports and related aspects</h2>
4545
<ol>

tests/src/individual/icb/index.html renamed to demos/src/individual/icb/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>ICB Debugger – Interop 2022 Viewport Investigation Effort Test Pages</title>
5+
<title>ICB Debugger – Interop 2022 Viewport Investigation Effort Demo Pages</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link rel="stylesheet" href="../../base.css" />
88

tests/src/individual/layout-viewport/index.html renamed to demos/src/individual/layout-viewport/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Layout Viewport Debugger – Interop 2022 Viewport Investigation Effort Test Pages</title>
5+
<title>Layout Viewport Debugger – Interop 2022 Viewport Investigation Effort Demo Pages</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link rel="stylesheet" href="../../base.css" />
88

tests/src/individual/virtual-keyboard/index.html renamed to demos/src/individual/virtual-keyboard/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Virtual Keyboard Debugger – Interop 2022 Viewport Investigation Effort Test Pages</title>
5+
<title>Virtual Keyboard Debugger – Interop 2022 Viewport Investigation Effort Demo Pages</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link rel="stylesheet" href="../../base.css" />
88

tests/src/individual/visual-viewport/index.html renamed to demos/src/individual/visual-viewport/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Visual Viewport Debugger – Interop 2022 Viewport Investigation Effort Test Pages</title>
5+
<title>Visual Viewport Debugger – Interop 2022 Viewport Investigation Effort Demo Pages</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link rel="stylesheet" href="../../base.css" />
88

0 commit comments

Comments
 (0)