Update web-platform-tests to revision e2eb25aaa6dd3c512b172588f3400f9c25a410c3

This commit is contained in:
WPT Sync Bot 2019-02-11 20:38:59 -05:00
parent 3d4a416c6b
commit 8b66216ed2
484 changed files with 1945 additions and 1089 deletions

File diff suppressed because it is too large Load diff

View file

@ -290,9 +290,6 @@
[Matching font-style: 'oblique 20deg' should prefer 'oblique 20deg' over 'oblique 30deg 60deg'] [Matching font-style: 'oblique 20deg' should prefer 'oblique 20deg' over 'oblique 30deg 60deg']
expected: FAIL expected: FAIL
[Matching font-weight: '399' should prefer '500 501' over '502 510']
expected: FAIL
[Matching font-style: 'oblique -21deg' should prefer 'oblique 0deg' over 'oblique 30deg 60deg'] [Matching font-style: 'oblique -21deg' should prefer 'oblique 0deg' over 'oblique 30deg 60deg']
expected: FAIL expected: FAIL

View file

@ -74,9 +74,3 @@
[opacity end] [opacity end]
expected: FAIL expected: FAIL
[border-top-width end]
expected: FAIL
[border-right-width end]
expected: FAIL

View file

@ -6,3 +6,6 @@
[Instant scrolling while doing history navigation.] [Instant scrolling while doing history navigation.]
expected: FAIL expected: FAIL
[Smooth scrolling while doing history navigation.]
expected: FAIL

View file

@ -0,0 +1,5 @@
[javascript-url-abort-return-value-undefined.tentative.html]
expected: TIMEOUT
[Not aborting fetch for javascript:undefined navigation]
expected: TIMEOUT

View file

@ -58,6 +58,12 @@
[Interior noopener should work] [Interior noopener should work]
expected: NOTRUN expected: NOTRUN
[noopener=1 means the same as noopener]
expected: NOTRUN
[noopener=0 means lack of noopener]
expected: NOTRUN
[window-open-noopener.html?_self] [window-open-noopener.html?_self]
[noopener window.open targeting _self] [noopener window.open targeting _self]

View file

@ -0,0 +1,40 @@
[target_blank_implicit_noopener.html]
[Anchor element with target=_blank with rel=opener+noopener]
expected: FAIL
[Area element with target=_blank with rel=opener+noopener]
expected: FAIL
[Anchor element with target=_blank with rel=noopener+opener+noreferrer]
expected: FAIL
[Anchor element with target=_blank with rel=opener]
expected: FAIL
[Anchor element with target=_blank with rel=noopener+opener]
expected: FAIL
[Area element with target=_blank with rel=noopener]
expected: FAIL
[Area element with target=_blank with rel=opener]
expected: FAIL
[Anchor element with target=_blank with implicit rel=noopener]
expected: FAIL
[Anchor element with target=_blank with rel=opener+noreferrer]
expected: FAIL
[Area element with target=_blank with implicit rel=noopener]
expected: FAIL
[Anchor element with target=_blank with rel=noreferrer]
expected: FAIL
[Area element with target=_blank with rel=noopener+opener]
expected: FAIL
[Anchor element with target=_blank with rel=noopener]
expected: FAIL

View file

@ -0,0 +1,40 @@
[target_blank_implicit_noopener_base.html]
[Anchor element with base target=_blank with implicit rel=noopener]
expected: FAIL
[Anchor element with base target=_blank with rel=noopener+opener]
expected: FAIL
[Area element with base target=_blank with rel=noopener]
expected: FAIL
[Anchor element with base target=_blank with rel=noopener]
expected: FAIL
[Area element with base target=_blank with rel=opener]
expected: FAIL
[Anchor element with base target=_blank with rel=opener]
expected: FAIL
[Area element with base target=_blank with implicit rel=noopener]
expected: FAIL
[Anchor element with base target=_blank with rel=noopener+opener+noreferrer]
expected: FAIL
[Anchor element with base target=_blank with rel=opener+noopener]
expected: FAIL
[Anchor element with base target=_blank with rel=opener+noreferrer]
expected: FAIL
[Anchor element with base target=_blank with rel=noreferrer]
expected: FAIL
[Area element with base target=_blank with rel=noopener+opener]
expected: FAIL
[Area element with base target=_blank with rel=opener+noopener]
expected: FAIL

View file

@ -0,0 +1,140 @@
<!DOCTYPE html>
<meta charset=utf-8>
<title>The playback rate of a worklet animation</title>
<link rel="help" href="https://drafts.css-houdini.org/css-animationworklet/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
'use strict';
// Presence of playback rate adds FP operations to calculating start_time
// and current_time of animations. That's why it's needed to increase FP error
// for comparing times in these tests.
window.assert_times_equal = (actual, expected, description) => {
assert_approx_equals(actual, expected, 0.002, description);
};
</script>
<script src="/web-animations/testcommon.js"></script>
<script src="common.js"></script>
<body>
<div id="log"></div>
<script>
'use strict';
function InstantiateWorkletAnimation(test) {
const DURATION = 10000; // ms
const KEYFRAMES = { height : ['100px', '50px'] };
return new WorkletAnimation('passthrough', new KeyframeEffect(createDiv(test),
KEYFRAMES, DURATION), document.timeline);
}
promise_test(async t => {
await registerPassthroughAnimator();
const animation = InstantiateWorkletAnimation(t);
animation.playbackRate = 0.5;
animation.play();
assert_equals(animation.currentTime, 0,
'Zero current time is not affected by playbackRate.');
}, 'Zero current time is not affected by playbackRate set while the animation is in idle state.');
promise_test(async t => {
await registerPassthroughAnimator();
const animation = InstantiateWorkletAnimation(t);
animation.play();
animation.playbackRate = 0.5;
assert_equals(animation.currentTime, 0,
'Zero current time is not affected by playbackRate.');
}, 'Zero current time is not affected by playbackRate set while the animation is in play-pending state.');
promise_test(async t => {
await registerPassthroughAnimator();
const animation = InstantiateWorkletAnimation(t);
const playbackRate = 2;
animation.play();
await waitForNextFrame();
// Set playback rate while the animation is playing.
const prevCurrentTime = animation.currentTime;
animation.playbackRate = playbackRate;
assert_times_equal(animation.currentTime, prevCurrentTime,
'The current time should stay unaffected by setting playback rate.');
}, 'Non zero current time is not affected by playbackRate set while the animation is in play state.');
promise_test(async t => {
await registerPassthroughAnimator();
const animation = InstantiateWorkletAnimation(t);
const playbackRate = 2;
animation.play();
await waitForNextFrame();
// Set playback rate while the animation is playing
const prevCurrentTime = animation.currentTime;
const prevTimelineTime = document.timeline.currentTime;
animation.playbackRate = playbackRate;
// Play the animation some more.
await waitForNextFrame();
const currentTime = animation.currentTime;
const currentTimelineTime = document.timeline.currentTime;
assert_times_equal(currentTime - prevCurrentTime, (currentTimelineTime - prevTimelineTime) * playbackRate,
'The current time should increase two times faster than timeline.');
}, 'The playback rate affects the rate of progress of the current time.');
promise_test(async t => {
await registerPassthroughAnimator();
const animation = InstantiateWorkletAnimation(t);;
const playbackRate = 2;
// Set playback rate while the animation is in 'idle' state.
animation.playbackRate = playbackRate;
animation.play();
const prevTimelineTime = document.timeline.currentTime;
await waitForNextFrame();
const currentTime = animation.currentTime;
const timelineTime = document.timeline.currentTime;
assert_times_equal(currentTime, (timelineTime - prevTimelineTime) * playbackRate,
'The current time should increase two times faster than timeline.');
}, 'The playback rate set before the animation started playing affects the ' +
'rate of progress of the current time');
promise_test(async t => {
await registerPassthroughAnimator();
const timing = { duration: 100,
easing: 'linear',
fill: 'none',
iterations: 1
};
const target = createDiv(t);
const keyframeEffect = new KeyframeEffect(target, { opacity: [0, 1] }, timing);
const animation = new WorkletAnimation('passthrough', keyframeEffect, document.timeline);
const playbackRate = 2;
animation.play();
animation.playbackRate = playbackRate;
await waitForNextFrame();
assert_times_equal(keyframeEffect.getComputedTiming().localTime, animation.currentTime,
'When playback rate is set on WorkletAnimation, the underlying effect\'s timing should be properly updated.');
assert_approx_equals(Number(getComputedStyle(target).opacity),
animation.currentTime / 100, 0.001,
'When playback rate is set on WorkletAnimation, the underlying effect should produce correct visual result.');
}, 'When playback rate is updated, the underlying effect is properly updated ' +
'with the current time of its WorkletAnimation and produces correct ' +
'visual result.');
</script>
</body>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<title>Reference for Worklet Animation sets keyframes</title>
<style>
#box {
width: 100px;
height: 100px;
transform: translateX(100px);
background-color: green;
}
</style>
<div id="box"></div>

View file

@ -0,0 +1,44 @@
<html class="reftest-wait">
<title>Worklet Animation sets keyframes</title>
<link rel="help" href="https://drafts.css-houdini.org/css-animationworklet/">
<meta name="assert" content="Can update the keyframes for an effect while the animation is running">
<link rel="match" href="worklet-animation-set-keyframes-ref.html">
<script src="/web-animations/testcommon.js"></script>
<script src="/common/reftest-wait.js"></script>
<script src="common.js"></script>
<style>
#box {
width: 100px;
height: 100px;
background-color: green;
}
</style>
<div id="box"></div>
<script>
registerConstantLocalTimeAnimator(500).then(()=>{
const keyframes_before = [
{ transform: 'translateY(0)' },
{ transform: 'translateY(200px)' }
];
const keyframes_after = [
{ transform: 'translateX(0)' },
{ transform: 'translateX(200px)' }
];
const box = document.getElementById('box');
const effect = new KeyframeEffect(box, keyframes_before, {duration: 1000});
const animation = new WorkletAnimation('constant_time', effect);
animation.play();
waitForAsyncAnimationFrames(1).then(_ => {
effect.setKeyframes(keyframes_after);
waitForAsyncAnimationFrames(1).then(_ => {
takeScreenshot();
});
});
});
</script>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<title>Reference for Worklet Animation sets timing</title>
<style>
#box {
width: 100px;
height: 100px;
transform: translateX(50px);
background-color: green;
}
</style>
<div id="box"></div>

View file

@ -0,0 +1,46 @@
<html class="reftest-wait">
<title>Worklet Animation sets timing</title>
<link rel="help" href="https://drafts.css-houdini.org/css-animationworklet/">
<meta name="assert" content="Can update the timing for an effect while the animation is running">
<link rel="match" href="worklet-animation-set-timing-ref.html">
<script src="/web-animations/testcommon.js"></script>
<script src="/common/reftest-wait.js"></script>
<script src="common.js"></script>
<style>
#box {
width: 100px;
height: 100px;
background-color: green;
}
</style>
<div id="box"></div>
<script>
registerConstantLocalTimeAnimator(500).then(()=>{
const keyframes = [
{ transform: 'translateX(0)' },
{ transform: 'translateX(200px)' }
];
const options_before = {
duration: 1000
};
const options_after = {
duration: 2000
};
const box = document.getElementById('box');
const effect = new KeyframeEffect(box, keyframes, options_before);
const animation = new WorkletAnimation('constant_time', effect);
animation.play();
waitForAsyncAnimationFrames(1).then(_ => {
effect.updateTiming(options_after);
waitForAsyncAnimationFrames(1).then(_ => {
takeScreenshot();
});
});
});
</script>

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>Filler text below is green reference</title> <title>Filler text below is green reference</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com"/>
<style> <style>
.green { color: green; } .green { color: green; }
</style> </style>

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>No red visible, filler text, reference</title> <title>No red visible, filler text, reference</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com"/>
</head> </head>
<body> <body>
<p>Test passes if there is no red visible on the page.</p> <p>Test passes if there is no red visible on the page.</p>

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>No red visible, blank page, reference</title> <title>No red visible, blank page, reference</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com"/>
</head> </head>
<body> <body>
<p>Test passes if there is no red visible on the page.</p> <p>Test passes if there is no red visible on the page.</p>

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right parenthesis' punctuation character</title> <title>CSS Reference: Green 'right parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right square bracket' punctuation character</title> <title>CSS Reference: Green 'right square bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right curly bracket' punctuation character</title> <title>CSS Reference: Green 'right curly bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'tibetan mark gug rtags gyas' punctuation character</title> <title>CSS Reference: Green 'tibetan mark gug rtags gyas' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'tibetan mark ang khang gyas' punctuation character</title> <title>CSS Reference: Green 'tibetan mark ang khang gyas' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'ogham reversed feather mark' punctuation character</title> <title>CSS Reference: Green 'ogham reversed feather mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right square bracket with quill' punctuation character</title> <title>CSS Reference: Green 'right square bracket with quill' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'superscript right parenthesis' punctuation character</title> <title>CSS Reference: Green 'superscript right parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'subscript right parenthesis' punctuation character</title> <title>CSS Reference: Green 'subscript right parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right-pointing angle bracket' punctuation character</title> <title>CSS Reference: Green 'right-pointing angle bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'medium right parenthesis ornament' punctuation character</title> <title>CSS Reference: Green 'medium right parenthesis ornament' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'medium flattened right parenthesis ornament' punctuation character</title> <title>CSS Reference: Green 'medium flattened right parenthesis ornament' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'medium right-pointing angle bracket ornament' punctuation character</title> <title>CSS Reference: Green 'medium right-pointing angle bracket ornament' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'heavy right-pointing angle quotation mark ornament' punctuation character</title> <title>CSS Reference: Green 'heavy right-pointing angle quotation mark ornament' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'heavy right-pointing angle bracket ornament' punctuation character</title> <title>CSS Reference: Green 'heavy right-pointing angle bracket ornament' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'light right tortoise shell bracket ornament' punctuation character</title> <title>CSS Reference: Green 'light right tortoise shell bracket ornament' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'medium right curly bracket ornament' punctuation character</title> <title>CSS Reference: Green 'medium right curly bracket ornament' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right s-shaped bag delimiter' punctuation character</title> <title>CSS Reference: Green 'right s-shaped bag delimiter' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'mathematical right white square bracket' punctuation character</title> <title>CSS Reference: Green 'mathematical right white square bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'mathematical right angle bracket' punctuation character</title> <title>CSS Reference: Green 'mathematical right angle bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'mathematical right double angle bracket' punctuation character</title> <title>CSS Reference: Green 'mathematical right double angle bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right white curly bracket' punctuation character</title> <title>CSS Reference: Green 'right white curly bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right white parenthesis' punctuation character</title> <title>CSS Reference: Green 'right white parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'z notation right image bracket' punctuation character</title> <title>CSS Reference: Green 'z notation right image bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'z notation right binding bracket' punctuation character</title> <title>CSS Reference: Green 'z notation right binding bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right square bracket with underbar' punctuation character</title> <title>CSS Reference: Green 'right square bracket with underbar' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right square bracket with tick in bottom corner' punctuation character</title> <title>CSS Reference: Green 'right square bracket with tick in bottom corner' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right square bracket with tick in top corner' punctuation character</title> <title>CSS Reference: Green 'right square bracket with tick in top corner' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right angle bracket with dot' punctuation character</title> <title>CSS Reference: Green 'right angle bracket with dot' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right arc greater-than bracket' punctuation character</title> <title>CSS Reference: Green 'right arc greater-than bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'double right arc less-than bracket' punctuation character</title> <title>CSS Reference: Green 'double right arc less-than bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right black tortoise shell bracket' punctuation character</title> <title>CSS Reference: Green 'right black tortoise shell bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right wiggly fence' punctuation character</title> <title>CSS Reference: Green 'right wiggly fence' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right double wiggly fence' punctuation character</title> <title>CSS Reference: Green 'right double wiggly fence' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right-pointing curved angle bracket' punctuation character</title> <title>CSS Reference: Green 'right-pointing curved angle bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right angle bracket' punctuation character</title> <title>CSS Reference: Green 'right angle bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right double angle bracket' punctuation character</title> <title>CSS Reference: Green 'right double angle bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right corner bracket' punctuation character</title> <title>CSS Reference: Green 'right corner bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right white corner bracket' punctuation character</title> <title>CSS Reference: Green 'right white corner bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right black lenticular bracket' punctuation character</title> <title>CSS Reference: Green 'right black lenticular bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right tortoise shell bracket' punctuation character</title> <title>CSS Reference: Green 'right tortoise shell bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right white lenticular bracket' punctuation character</title> <title>CSS Reference: Green 'right white lenticular bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right white tortoise shell bracket' punctuation character</title> <title>CSS Reference: Green 'right white tortoise shell bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right white square bracket' punctuation character</title> <title>CSS Reference: Green 'right white square bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'double prime quotation mark' punctuation character</title> <title>CSS Reference: Green 'double prime quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'low double prime quotation mark' punctuation character</title> <title>CSS Reference: Green 'low double prime quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'ornate right parenthesis' punctuation character</title> <title>CSS Reference: Green 'ornate right parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right white lenticular bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right white lenticular bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right parenthesis' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right curly bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right curly bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right tortoise shell bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right tortoise shell bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right black lenticular bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right black lenticular bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right double angle bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right double angle bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right angle bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right angle bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right corner bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right corner bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right white corner bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right white corner bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'presentation form for vertical right square bracket' punctuation character</title> <title>CSS Reference: Green 'presentation form for vertical right square bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'small right parenthesis' punctuation character</title> <title>CSS Reference: Green 'small right parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'small right curly bracket' punctuation character</title> <title>CSS Reference: Green 'small right curly bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'small right tortoise shell bracket' punctuation character</title> <title>CSS Reference: Green 'small right tortoise shell bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'fullwidth right parenthesis' punctuation character</title> <title>CSS Reference: Green 'fullwidth right parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'fullwidth right square bracket' punctuation character</title> <title>CSS Reference: Green 'fullwidth right square bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'fullwidth right curly bracket' punctuation character</title> <title>CSS Reference: Green 'fullwidth right curly bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'fullwidth right white parenthesis' punctuation character</title> <title>CSS Reference: Green 'fullwidth right white parenthesis' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'halfwidth right corner bracket' punctuation character</title> <title>CSS Reference: Green 'halfwidth right corner bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right-pointing double angle quotation mark' punctuation character</title> <title>CSS Reference: Green 'right-pointing double angle quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right single quotation mark' punctuation character</title> <title>CSS Reference: Green 'right single quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right double quotation mark' punctuation character</title> <title>CSS Reference: Green 'right double quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'single right-pointing angle quotation mark' punctuation character</title> <title>CSS Reference: Green 'single right-pointing angle quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right substitution bracket' punctuation character</title> <title>CSS Reference: Green 'right substitution bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right dotted substitution bracket' punctuation character</title> <title>CSS Reference: Green 'right dotted substitution bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right transposition bracket' punctuation character</title> <title>CSS Reference: Green 'right transposition bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right raised omission bracket' punctuation character</title> <title>CSS Reference: Green 'right raised omission bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'right low paraphrase bracket' punctuation character</title> <title>CSS Reference: Green 'right low paraphrase bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'left-pointing double angle quotation mark' punctuation character</title> <title>CSS Reference: Green 'left-pointing double angle quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'left single quotation mark' punctuation character</title> <title>CSS Reference: Green 'left single quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'single high-reversed-9 quotation mark' punctuation character</title> <title>CSS Reference: Green 'single high-reversed-9 quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'left double quotation mark' punctuation character</title> <title>CSS Reference: Green 'left double quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'double high-reversed-9 quotation mark' punctuation character</title> <title>CSS Reference: Green 'double high-reversed-9 quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'single left-pointing angle quotation mark' punctuation character</title> <title>CSS Reference: Green 'single left-pointing angle quotation mark' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'left substitution bracket' punctuation character</title> <title>CSS Reference: Green 'left substitution bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'left dotted substitution bracket' punctuation character</title> <title>CSS Reference: Green 'left dotted substitution bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'left transposition bracket' punctuation character</title> <title>CSS Reference: Green 'left transposition bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

View file

@ -2,7 +2,6 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>CSS Reference: Green 'left raised omission bracket' punctuation character</title> <title>CSS Reference: Green 'left raised omission bracket' punctuation character</title>
<link rel="author" title="Geoffrey Sneddon" href="mailto:me@gsnedders.com" />
<style type="text/css"> <style type="text/css">
span span
{ {

Some files were not shown because too many files have changed in this diff Show more