Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / location-observe-callback-crash.html
blob03d1e7bd94eb454239b6d02db9d81ee59f2d1e37
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <script>
4 description("Accessing the Location object from a V8-triggered callback should not crash");
5 jsTestIsAsync = true;
7 var obj = {};
8 Object.observe(obj, function() {
9 window.location.hash = 'foo';
10 testPassed("Did not crash");
11 finishJSTest();
12 });
13 obj.foo = 1;
14 </script>