chromium/third_party/blink/web_tests/svg/custom/object-sizing-explicit-width-height.xhtml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <style>
        object {
            width: 175px;
            height: 275px;
            background: orange;
        }
    </style>
</head>
<body>
    <!-- You should see four orange rects which are twice as high as they are long.
         Four blue rects should be placed around the center which are 175x175 sized
         containing a green circle in their middle
    -->
    <object data="resources/embedded.svg" type="image/svg+xml"/>
    <object data="resources/embedded.svg" type="image/svg+xml"/>
    <object data="resources/embedded.svg" type="image/svg+xml"/>
    <object data="resources/embedded.svg" type="image/svg+xml"/>
</body>
</html>