mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Update CSS tests to revision d13905941293af83ea8c3c1750dba652e0423fb0
This commit is contained in:
parent
b492a3e8b1
commit
5450053b02
842 changed files with 42936 additions and 27 deletions
|
@ -0,0 +1,97 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>CSSOM Window Test: Properties and Functions</title>
|
||||
<link rel="author" title="Joe Balancio" href="mailto:jlbalancio@gmail.com">
|
||||
<link rel="help" href="http://www.w3.org/TR/cssom-view/#extensions-to-the-window-interface">
|
||||
<meta name="flags" content="dom">
|
||||
<meta name="assert" content="All properties exist and are readonly. All functions exist and are instances of Function">
|
||||
<script src="/resources/testharness.js" type="text/javascript"></script>
|
||||
<script src="/resources/testharnessreport.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>Test not run - javascript required.</noscript>
|
||||
<div id="log"></div>
|
||||
<script id="metadata_cache">/*
|
||||
{
|
||||
"window_inherited_functions": {
|
||||
"assert": ["window functions are inherited"]
|
||||
},
|
||||
"window_functions": {
|
||||
"assert": ["window functions are instances of Function"]
|
||||
},
|
||||
"window_properties": {
|
||||
"assert": ["window properties are owned by window"]
|
||||
},
|
||||
"window_properties_readonly": {
|
||||
"assert": ["window properties are readonly"]
|
||||
}
|
||||
}
|
||||
*/</script>
|
||||
<script type="text/javascript">
|
||||
/*
|
||||
Window Functions
|
||||
*/
|
||||
test(
|
||||
function(){
|
||||
assert_inherits(window, "matchMedia");
|
||||
assert_inherits(window, "scroll");
|
||||
assert_inherits(window, "scrollTo");
|
||||
assert_inherits(window, "scrollBy");
|
||||
}, 'window_inherited_functions', {
|
||||
assert: ['window functions are inherited']
|
||||
}
|
||||
);
|
||||
|
||||
test(
|
||||
function(){
|
||||
assert_true(window.matchMedia instanceof Function);
|
||||
assert_true(window.scroll instanceof Function);
|
||||
assert_true(window.scrollTo instanceof Function);
|
||||
assert_true(window.scrollBy instanceof Function);
|
||||
}, 'window_functions', {
|
||||
assert: ['window functions are instances of Function']
|
||||
}
|
||||
);
|
||||
|
||||
/*
|
||||
Window Properties
|
||||
*/
|
||||
test(
|
||||
function() {
|
||||
assert_own_property(window, 'screen');
|
||||
assert_own_property(window, 'innerWidth');
|
||||
assert_own_property(window, 'innerHeight');
|
||||
assert_own_property(window, 'scrollX');
|
||||
assert_own_property(window, 'pageXOffset');
|
||||
assert_own_property(window, 'scrollY');
|
||||
assert_own_property(window, 'pageYOffset');
|
||||
assert_own_property(window, 'screenX');
|
||||
assert_own_property(window, 'screenY');
|
||||
assert_own_property(window, 'outerWidth');
|
||||
assert_own_property(window, 'outerHeight');
|
||||
}, 'window_properties', {
|
||||
assert: ['window properties are owned by window']
|
||||
}
|
||||
);
|
||||
test(
|
||||
function() {
|
||||
assert_readonly(window, 'screen');
|
||||
assert_readonly(window, 'innerWidth');
|
||||
assert_readonly(window, 'innerHeight');
|
||||
assert_readonly(window, 'scrollX');
|
||||
assert_readonly(window, 'pageXOffset');
|
||||
assert_readonly(window, 'scrollY');
|
||||
assert_readonly(window, 'pageYOffset');
|
||||
assert_readonly(window, 'screenX');
|
||||
assert_readonly(window, 'screenY');
|
||||
assert_readonly(window, 'outerWidth');
|
||||
assert_readonly(window, 'outerHeight');
|
||||
}, 'window_properties_readonly', {
|
||||
assert: ['window properties are readonly']
|
||||
}
|
||||
);
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue