块状工作区背景显示随机图像?

时间:2017-04-07 09:10:48

标签: google-chrome svg svg-filters blockly

我面临一个奇怪的错误,导致Blockly的背景显示随机图像

正确的背景应该是这样的: normal background

但是它显示随机图像(主要是favicon?)而不是

incorrect background

用文字描述真的太奇怪了,请看看这个screen record

我从Blockly中提取svg(我在视频中使用过)可以重现错误

<svg xmlns="http://www.w3.org/2000/svg" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" class="blocklySvg" width="1209px" height="270px" style="display: block;">
  <defs>
    <pattern id="blocklyGridPattern5105292194395497" patternUnits="userSpaceOnUse" width="25" height="25" x="1202" y="219">
      <line stroke="#ccc" stroke-width="1" x1="11" y1="12.5" x2="14" y2="12.5"></line>
      <line stroke="#ccc" stroke-width="1" x1="12.5" y1="11" x2="12.5" y2="14"></line>
    </pattern>
  </defs>
  <g class="blocklyWorkspace">
    <rect height="100%" width="100%" class="blocklyMainBackground" style="fill: url(#blocklyGridPattern5105292194395497);"></rect>
  </g>
</svg>

这是与Chrome相关的错误吗?或者我配置错误?

有关我的环境的其他信息

  • Chrome 56(似乎只发生在Chrome中)
  • MacOS 10.12.4

1 个答案:

答案 0 :(得分:2)

经过一些调查后,我认为这是Chrome的错误。

我已将其报告给Chromium,他们最终可以重现此错误。

我回答我的问题只是为了记录,以防有人有同样的问题。