summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/core/css/cssom/StyleValue.cpp
blob: 4b168d60aa23d9b9a97a8074277227b87e407f43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "core/css/cssom/StyleValue.h"

#include "bindings/core/v8/ScriptValue.h"
#include "core/css/cssom/SimpleLength.h"

namespace blink {

ScriptValue StyleValue::parse(ScriptState* state, const String& property, const String& cssText)
{
    // TODO: implement.
    return ScriptValue();
}

} // namespace blink