<!DOCTYPE html> | |
<html> | |
<head> | |
<title>This tests that a fixed size table (200px) can accommodate fixed size content (100px + 100px) without wrapping.</title> | |
</head> | |
<body> | |
<div style="position: fixed; left: 7px; top: 7px; width: 100px; height: 100px; border: 1px solid green;"></div> | |
<div style="position: fixed; left: 110px; top: 10px; width: 10px; height: 10px; border: 1px solid green;"></div> | |
</body> | |
</html> |