Remove unnecessary pixel expectations (except platform/win platform/mac)

The pixel expectations existed when the tests were pixel tests but now the
tests are text-only tests.

CL was generated with the following python script:
files = subprocess.Popen(['find', '.', '-type', 'f', '-not', '-name', '*-expected.*'], stdout=subprocess.PIPE).stdout.readlines()
for f in files:
  f = f.strip()
  c = open(f).read()
  if (c.find('text-based-repaint.js') != -1 and c.find('runRepaintAndPixelTest') == -1) or c.find('testRunner.dumpAsText()') != -1:
    test_name = re.sub('\.[a-z]*$', '', f)
    os.system('rm ' + test_name + '-expected.png' + ' platform/*/' + test_name + '-expected.png')

False positives are restored manually according to trybot results.

R=dpranke@chromium.org

Review URL: https://codereview.chromium.org/453733002

git-svn-id: svn://svn.chromium.org/blink/trunk@179862 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 630f922b
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment