mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
3d21867b86
--HG-- extra : rebase_source : 64fbe0958089e676690eb89e5f68e903972043f2
29 lines
658 B
HTML
29 lines
658 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Testcase bug - 100% cpu usage with binding setting position: fixed in constructor</title>
|
|
|
|
<bindings xmlns="http://www.mozilla.org/xbl">
|
|
<binding id="b" inheritstyle="false">
|
|
<content>
|
|
<div xmlns="http://www.w3.org/1999/xhtml" style=" -moz-binding: url(#a);"/>
|
|
<children/>
|
|
</content>
|
|
</binding>
|
|
|
|
<binding id="a">
|
|
<implementation>
|
|
<constructor>
|
|
this.style.position='fixed';
|
|
</constructor>
|
|
</implementation>
|
|
<content>
|
|
<children xmlns="http://www.mozilla.org/xbl"/>
|
|
</content>
|
|
</binding>
|
|
</bindings>
|
|
|
|
</head>
|
|
<body>
|
|
<span style="-moz-binding:url();"></span>
|
|
</body>
|
|
</html> |